aboutsummaryrefslogtreecommitdiff
path: root/gas/output-file.h
blob: f5c80738afd116fbb93ee66972735a4d0bf95ffe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18


#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 */