Fix the creation of the dumpdir directory in stress_floppy Makefile
[ltp-debian.git] / testcases / commands / ade / ldd / main.c
blob08dfb0632c1d789593882b574e85af8f1aa8f8c8
1 #include <stdio.h>
2 void file1();
3 void file2();
4 void file3();
5 void file4();
6 void file5();
7 int main()
9 file1();
10 file2();
11 file3();
12 file4();
13 file5();
14 printf("All Functions Executed\n");
15 return 0;