mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08: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 */
|