diff options
author | Jan Engelhardt <jengelh@inai.de> | 2013-06-03 01:38:57 +0200 |
---|---|---|
committer | Holger Hans Peter Freyther <holger@moiji-mobile.com> | 2014-10-03 08:46:47 +0200 |
commit | a6d83932ba3aee8f0570d86f0f23773bd44909cc (patch) | |
tree | 366b8bae6d3d4afc2546884f9ef580ab8535749d /utils | |
parent | 96af78650d1de134ebb37ddb829508cf0bd30c51 (diff) |
utils: resolve compiler warnings on implicit declarations
CC osmo-auc-gen.o
osmo-auc-gen.c: In function 'main':
osmo-auc-gen.c:216:3: warning: implicit declaration of function
'time' [-Wimplicit-function-declaration]
Diffstat (limited to 'utils')
-rw-r--r-- | utils/osmo-auc-gen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/osmo-auc-gen.c b/utils/osmo-auc-gen.c index fda045aa..54128ff0 100644 --- a/utils/osmo-auc-gen.c +++ b/utils/osmo-auc-gen.c @@ -25,6 +25,7 @@ #include <stdio.h> #include <errno.h> #include <string.h> +#include <time.h> #include <getopt.h> #include <unistd.h> #include <inttypes.h> |