aboutsummaryrefslogtreecommitdiff
path: root/libbb/verror_msg.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-09-12 13:27:55 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-09-12 13:27:55 +0000
commitb5f50ea3446980984637ad5fac6bd3890102027b (patch)
tree98fdcda294822aa89f2e7bad386d53dac71e2ff7 /libbb/verror_msg.c
parent428a5cd0d32a3a4badf0a1f62f1126a24723545f (diff)
downloadbusybox-w32-b5f50ea3446980984637ad5fac6bd3890102027b.tar.gz
busybox-w32-b5f50ea3446980984637ad5fac6bd3890102027b.tar.bz2
busybox-w32-b5f50ea3446980984637ad5fac6bd3890102027b.zip
- small trivia to be gentle to gcc-2.95.x which had no va_copy but only __va_copy.
Diffstat (limited to 'libbb/verror_msg.c')
-rw-r--r--libbb/verror_msg.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/libbb/verror_msg.c b/libbb/verror_msg.c
index 988a7a293..557b3290a 100644
--- a/libbb/verror_msg.c
+++ b/libbb/verror_msg.c
@@ -7,12 +7,8 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 */ 8 */
9 9
10#include <stdio.h>
11#include <errno.h>
12#include <string.h>
13#include <stdlib.h>
14#include <syslog.h>
15#include "libbb.h" 10#include "libbb.h"
11#include <syslog.h>
16 12
17int logmode = LOGMODE_STDIO; 13int logmode = LOGMODE_STDIO;
18const char *msg_eol = "\n"; 14const char *msg_eol = "\n";