diff options
author | Christoph Fritz <chf@fsfe.org> | 2011-09-01 16:22:17 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2011-09-01 17:44:35 +0200 |
commit | ab7c9c766be31f1b79b3723826de1146ac553eb5 (patch) | |
tree | 2c9f0c4f158d0395675873874ff56afe4c67d498 /include | |
parent | 712691d8d8abbeb97f21df8c1d923d8694996ee7 (diff) |
logging: include stdarg.h for va_list
fixes tiny compile error:
CC socket.lo
In file included from socket.c:13:
../include/osmocom/core/logging.h:31: error: expected declaration
specifiers or ‘...’ before ‘va_list’
make[3]: *** [socket.lo] Error 1
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/core/logging.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/osmocom/core/logging.h b/include/osmocom/core/logging.h index fc4e2fb4..72e4c93e 100644 --- a/include/osmocom/core/logging.h +++ b/include/osmocom/core/logging.h @@ -9,6 +9,7 @@ #include <stdio.h> #include <stdint.h> +#include <stdarg.h> #include <osmocom/core/linuxlist.h> /*! \brief Maximum number of logging contexts */ |