diff options
Diffstat (limited to 'maje.h')
-rw-r--r-- | maje.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -4,12 +4,13 @@ #include <sys/stat.h> struct majefile { + struct majefile *next; struct stat st; char path[]; }; -struct majefile **find_source_files(const char *path); -char *find_main(struct majefile **sources); -void make_makefile(const char *makefile, struct majefile **sources, const char *target); +struct majefile *find_source_files(const char *path); +char *find_main(struct majefile *sources); +void make_makefile(const char *makefile, struct majefile *sources, const char *target); #endif |