shared_object.c 110 B

123456789
  1. /* a simple helloworld test */
  2. #include <stdio.h>
  3. int main()
  4. {
  5. printf("Hello world\n");
  6. return 0;
  7. }