c69db88340
the iprintf macro. It was causing the actual format string and variable names to be written out, instead of substituting the values of the variables into the format string.
22 lines
544 B
C
22 lines
544 B
C
/* $FreeBSD$ */
|
|
|
|
#define iprintf(ident,args...) do { printf("%-" # ident "s", ""); \
|
|
printf(args);}while(0)
|
|
|
|
extern int verbose;
|
|
|
|
int cmd_dumptree(int argc, char *argv[]);
|
|
int cmd_login(int argc, char *argv[]);
|
|
int cmd_logout(int argc, char *argv[]);
|
|
int cmd_lookup(int argc, char *argv[]);
|
|
int cmd_print(int argc, char *argv[]);
|
|
int cmd_view(int argc, char *argv[]);
|
|
void login_usage(void);
|
|
void logout_usage(void);
|
|
void lookup_usage(void);
|
|
void print_usage(void);
|
|
void view_usage(void);
|
|
#ifdef APPLE
|
|
extern int loadsmbvfs();
|
|
#endif
|