aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2018-05-07 21:51:42 +0200
committerKristian Evers <kristianevers@gmail.com>2018-05-07 21:51:42 +0200
commit11bfb050e4712c6b320b8a1256a36a66c60359c0 (patch)
tree27f92baaf42f1be28227c3b10ec8019dc125310d /src
parentae1ed6641210c3d7bf570688d11b28c6460e4e9c (diff)
downloadPROJ-11bfb050e4712c6b320b8a1256a36a66c60359c0.tar.gz
PROJ-11bfb050e4712c6b320b8a1256a36a66c60359c0.zip
Clean readability-redundant-declaratio clang-tidy warnings
Function prototypes were declared twice for the FFIO framework, probably because FFIO at some point during development existed as a separate file. With this commit the second set of function prototypes is removed leaving only the first entry at the top of the file. Similarly duplicate header inclusions has been removed.
Diffstat (limited to 'src')
-rw-r--r--src/gie.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/gie.c b/src/gie.c
index 2f3e477d..b912a3ac 100644
--- a/src/gie.c
+++ b/src/gie.c
@@ -1160,30 +1160,6 @@ See the PROJ ".gie" test suites for examples of supported formatting.
****************************************************************************************/
-#include <stdio.h>
-#include <stdlib.h>
-#include <stdarg.h>
-
-#include <string.h>
-#include <ctype.h>
-
-#include <math.h>
-#include <errno.h>
-
-
-
-static int get_inp (ffio *G);
-static int skip_to_next_tag (ffio *G);
-static int step_into_gie_block (ffio *G);
-static int locate_tag (ffio *G, const char *tag);
-static int nextline (ffio *G);
-static int at_end_delimiter (ffio *G);
-static const char *at_tag (ffio *G);
-static int at_decorative_element (ffio *G);
-static ffio *ffio_destroy (ffio *G);
-static ffio *ffio_create (const char **tags, size_t n_tags, size_t max_record_size);
-
-
/***************************************************************************************/
static ffio *ffio_create (const char **tags, size_t n_tags, size_t max_record_size) {