assembler: Remove two fixmes.
[b43-tools.git] / assembler / args.h
1 #ifndef BCM43xx_ASM_ARGS_H_
2 #define BCM43xx_ASM_ARGS_H_
3
4 int parse_args(int argc, char **argv);
5 int open_input_file(void);
6 void close_input_file(void);
7
8 extern int _debug;
9
10 #define IS_DEBUG                (_debug > 0)
11 #define IS_VERBOSE_DEBUG        (_debug > 1)
12 #define IS_INSANE_DEBUG         (_debug > 2)
13
14 #endif /* BCM43xx_ASM_ARGS_H_ */