shared_object.c 110 B

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