• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdio.h>
2 
print(void)3 void print(void)
4 {
5   printf("hello from mylib.c\n");
6   return;
7 }
8