Revert unnecessary part of previous commit.

This commit is contained in:
Dag-Erling Smørgrav 2003-05-13 10:18:49 +00:00
parent 49830e2a2c
commit fbafac351f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114972

View File

@ -62,13 +62,13 @@ LogLevel log_level_number(char *);
#define debug2 ssh_debug2
#define debug3 ssh_debug3
void ssh_fatal(const char *, ...) __attribute__((format(printf, 1, 2)));
void ssh_error(const char *, ...) __attribute__((format(printf, 1, 2)));
void ssh_log(const char *, ...) __attribute__((format(printf, 1, 2)));
void ssh_verbose(const char *, ...) __attribute__((format(printf, 1, 2)));
void ssh_debug(const char *, ...) __attribute__((format(printf, 1, 2)));
void ssh_debug2(const char *, ...) __attribute__((format(printf, 1, 2)));
void ssh_debug3(const char *, ...) __attribute__((format(printf, 1, 2)));
void fatal(const char *, ...) __attribute__((format(printf, 1, 2)));
void error(const char *, ...) __attribute__((format(printf, 1, 2)));
void log(const char *, ...) __attribute__((format(printf, 1, 2)));
void verbose(const char *, ...) __attribute__((format(printf, 1, 2)));
void debug(const char *, ...) __attribute__((format(printf, 1, 2)));
void debug2(const char *, ...) __attribute__((format(printf, 1, 2)));
void debug3(const char *, ...) __attribute__((format(printf, 1, 2)));
void fatal_cleanup(void);
void fatal_add_cleanup(void (*) (void *), void *);