summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorrlar <rlar>2016-02-27 17:27:11 +0100
committerWill Estes <westes575@gmail.com>2016-02-27 17:35:07 -0500
commit9132612c2c6724f716ca3f831a22e328b40a96f6 (patch)
treeec1792ce352a049476c1de7ffcfd2fe5dff05df6 /lib
parentf691a6345d9330c1bf49d48a8306f7ee9cf35fd2 (diff)
warning: no previous prototype for 'do_nothing' [-Wmissing-prototypes]
Diffstat (limited to 'lib')
-rw-r--r--lib/lib.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/lib.c b/lib/lib.c
index e540e8d..4b4bf73 100644
--- a/lib/lib.c
+++ b/lib/lib.c
@@ -3,5 +3,7 @@
* moving something that flex treats as a library function into this
* directory. */
+extern void do_nothing(void);
+
void do_nothing(void){ return;}