diff options
author | Martin Mares <mj@ucw.cz> | 2004-06-05 11:05:12 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2004-06-05 11:05:12 +0200 |
commit | e98bc2ea9b957287e78bc51e3293fc48a49c26b2 (patch) | |
tree | bf183e8dc62da5e5af37238e763beaf54df2bc20 /sysdep/unix | |
parent | 5da8f82feb14512725e09664f6db96f03e3ece8f (diff) | |
download | bird-e98bc2ea9b957287e78bc51e3293fc48a49c26b2.tar bird-e98bc2ea9b957287e78bc51e3293fc48a49c26b2.zip |
Renamed log() to log_msg(), but still keeping the old name as a macro.
This is done to avoid clashes with gcc-3.3 which has built-in logarithms :)
Diffstat (limited to 'sysdep/unix')
-rw-r--r-- | sysdep/unix/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdep/unix/log.c b/sysdep/unix/log.c index 6b7c38c..08711e1 100644 --- a/sysdep/unix/log.c +++ b/sysdep/unix/log.c @@ -114,7 +114,7 @@ vlog(int class, char *msg, va_list args) * formatted as a full line, no need to include |\n| inside. */ void -log(char *msg, ...) +log_msg(char *msg, ...) { int class = 1; va_list args; |