Files
Linux-C-Notes/C10-Makefile/testmake/main.c
2024-05-26 15:39:14 +08:00

13 lines
141 B
C

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