Add missing function prototypes to header files.
authorBen Pfaff <blp@nicira.com>
Thu, 8 Jan 2009 23:12:29 +0000 (15:12 -0800)
committerBen Pfaff <blp@nicira.com>
Thu, 8 Jan 2009 23:25:25 +0000 (15:25 -0800)
Found with -Wmissing-prototypes.

lib/netdev.h
lib/random.h

index d7afd83aaa4321ed30e0d129cfb0e07daf56a583..7fc96222d9cd040bf7afc4e1443e6ed412ab5319 100644 (file)
@@ -75,6 +75,7 @@ int netdev_recv(struct netdev *, struct ofpbuf *);
 void netdev_recv_wait(struct netdev *);
 int netdev_drain(struct netdev *);
 int netdev_send(struct netdev *, const struct ofpbuf *);
+void netdev_send_wait(struct netdev *);
 int netdev_set_etheraddr(struct netdev *, const uint8_t mac[6]);
 const uint8_t *netdev_get_etheraddr(const struct netdev *);
 const char *netdev_get_name(const struct netdev *);
index 80332308a123187faa53a781d095835859d28ca8..eb29a2289e0a22053817217e30d82304d41c9e39 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
@@ -37,6 +37,7 @@
 #include <stddef.h>
 #include <stdint.h>
 
+void random_init(void);
 void random_bytes(void *, size_t);
 uint8_t random_uint8(void);
 uint16_t random_uint16(void);