Fixes for compiling on 64bit and outside the source dir
[AROS.git] / tools / collect-aros / gensets.h
blob9fb7361b85ee09bcafd5c9a6481846381ee55924
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #ifndef _GENSETS_H_
7 #define _GENSETS_H_
9 #include <stdio.h>
11 typedef struct setnode
13 char *secname;
14 int off_setname;
15 unsigned long pri;
16 struct setnode *next;
17 } setnode;
19 void parse_secname(const char *secname, setnode **setlist_ptr);
20 void parse_format(const char *format);
21 void emit_sets(setnode *setlist, FILE *out);
23 #endif /* !_GENSETS_H_ */