]> git.llucax.com Git - software/makeit.git/blob - example/lib2/lib2.cpp
Move the example to its own subdirectory
[software/makeit.git] / example / lib2 / lib2.cpp
1
2 #include "lib2.h"
3
4 #include <otherproj/otherproj.h>
5 #include <makeit/lib1/lib1.h>
6
7 #include <stdio.h>
8
9 void lib2(void)
10 {
11         printf("lib2()\n");
12         lib1();
13         otherproj();
14 }
15