Convert tab after #define to space

This commit is contained in:
Markus Armbruster 2010-05-22 15:57:07 +02:00
parent 243a15052f
commit 25d29c8f8f
32 changed files with 186 additions and 186 deletions

View file

@ -58,7 +58,7 @@
#endif
#ifndef bit
#define bit(x) (1<<(x))
#define bit(x) (1<<(x))
#endif
#define minutes(x) (60*(x))
@ -84,9 +84,9 @@ extern void (*oops_handler)(void);
void exit_nomem(void) ATTRIBUTE((noreturn));
/* return codes from command routines */
#define RET_OK 0 /* command completed sucessfully */
#define RET_FAIL 1 /* command completed unsucessfully [?] */
#define RET_SYN 2 /* syntax error in command */
#define RET_OK 0 /* command completed sucessfully */
#define RET_FAIL 1 /* command completed unsucessfully [?] */
#define RET_SYN 2 /* syntax error in command */
extern char *getstarg(char *input, char *prompt, char buf[]);
extern char *getstring(char *prompt, char buf[]);