29 lines
755 B
Diff
29 lines
755 B
Diff
|
From e32564831311febc054f4b3f7fb042663ecb9440 Mon Sep 17 00:00:00 2001
|
||
|
From: Jan Engelhardt <jengelh@inai.de>
|
||
|
Date: Mon, 3 Jun 2013 01:38:57 +0200
|
||
|
Subject: [PATCH 1/2] 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]
|
||
|
---
|
||
|
utils/osmo-auc-gen.c | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/utils/osmo-auc-gen.c b/utils/osmo-auc-gen.c
|
||
|
index 7a3c124..47256ff 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>
|
||
|
|
||
|
--
|
||
|
1.8.2
|
||
|
|