mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-02 17:16:42 +00:00
19 lines
318 B
C
19 lines
318 B
C
|
|
|
|
#ifdef __STDC__
|
|
|
|
void output_file_append(char *where, long length, char *filename);
|
|
void output_file_close(char *filename);
|
|
void output_file_create(char *name);
|
|
|
|
#else /* __STDC__ */
|
|
|
|
void output_file_append();
|
|
void output_file_close();
|
|
void output_file_create();
|
|
|
|
#endif /* __STDC__ */
|
|
|
|
|
|
/* end of output-file.h */
|