Files
Linux-C-Notes/C10-Makefile/testmake/main.c
2024-04-28 13:10:56 +08:00

13 lines
138 B
C

#include <stdio.h>
#include <stdlib.h>
#include "tool1.h"
#include "tool2.h"
int main()
{
mytool1();
mytool2();
return 0;
}