Make function declarations into prototypes.
authorBen Pfaff <blp@nicira.com>
Thu, 8 Jan 2009 23:24:48 +0000 (15:24 -0800)
committerBen Pfaff <blp@nicira.com>
Thu, 8 Jan 2009 23:24:48 +0000 (15:24 -0800)
Found by -Wmissing-prototypes.

lib/fatal-signal.c

index e4bc457780ffa8178a1ea7f14a8dd9aee7e6c41c..b05bd2819590b8eb2adc7e003f9967017e4b3dd9 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
+/* Copyright (c) 2008, 2009 The Board of Trustees of The Leland Stanford
  * Junior University
  * 
  * We are making the OpenFlow specification and associated documentation
@@ -94,7 +94,7 @@ fatal_signal_add_hook(void (*func)(void *aux), void *aux, bool run_at_exit)
  * fatal signal hook, so that the hook is not invoked while the data structure
  * is in an inconsistent state. */
 void
-fatal_signal_block()
+fatal_signal_block(void)
 {
     static bool inited = false;
     if (!inited) {
@@ -128,7 +128,7 @@ fatal_signal_block()
  * fatal_signal_unblock() must be called the same number of times to unblock
  * signals. */
 void
-fatal_signal_unblock()
+fatal_signal_unblock(void)
 {
     assert(block_level > 0);
     if (--block_level == 0) {