Avoid using a leading underbar in defines as they are reserved in

ISO C.
This commit is contained in:
Todd C. Miller
2015-05-21 11:13:20 -06:00
parent 1298ea9107
commit 05a01d4c5d
60 changed files with 202 additions and 202 deletions

View File

@@ -34,7 +34,7 @@
#include "sudo_debug.h"
static int
_sudo_printf(int msg_type, const char *fmt, ...)
sudo_printf_int(int msg_type, const char *fmt, ...)
{
va_list ap;
int len;
@@ -59,4 +59,4 @@ _sudo_printf(int msg_type, const char *fmt, ...)
return len;
}
sudo_printf_t sudo_printf = _sudo_printf;
sudo_printf_t sudo_printf = sudo_printf_int;