diff options
| author | Dan Pasanen <dan.pasanen@gmail.com> | 2017-12-28 08:19:07 -0600 |
|---|---|---|
| committer | Michael Bestas <mkbestas@lineageos.org> | 2018-09-02 16:26:40 +0300 |
| commit | e4a723f6f9803604af0b9d0f7a431f57fd085beb (patch) | |
| tree | 9b11cc9024844fd7f5c40d339d49bd882140c976 | |
| parent | 250db0e5c51b4626feee6937461dd577956d576b (diff) | |
| download | android_external_nano-e4a723f6f9803604af0b9d0f7a431f57fd085beb.tar.gz android_external_nano-e4a723f6f9803604af0b9d0f7a431f57fd085beb.tar.bz2 android_external_nano-e4a723f6f9803604af0b9d0f7a431f57fd085beb.zip | |
nano: fix implicit declaration of time function
error: implicit declaration of function 'time' is invalid in C99
Change-Id: I6cd1fc10e32b26ff50b6f95f91f5fe693dc42553
| -rw-r--r-- | src/search.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/search.c b/src/search.c index 79b315b2..99d92415 100644 --- a/src/search.c +++ b/src/search.c @@ -22,9 +22,7 @@ #include "proto.h" #include <string.h> -#ifdef DEBUG #include <time.h> -#endif static bool came_full_circle = FALSE; /* Have we reached the starting line again while searching? */ |
