added stdio.h to includes for DBG compilation

This commit is contained in:
Marty Connor
2006-09-27 05:57:06 +00:00
parent 1da4faa896
commit 6ac78f6aff
27 changed files with 32 additions and 4 deletions

View File

@@ -1,3 +1,4 @@
#include "stdio.h"
#include <stdint.h>
#include <string.h>
#include <byteswap.h>
@@ -147,8 +148,8 @@ int ndp_resolve ( struct net_device *netdev, struct in6_addr *dest,
* @v st_src Source address
* @v st_dest Destination address
*/
int ndp_process_advert ( struct pk_buff *pkb, struct sockaddr_tcpip *st_src,
struct sockaddr_tcpip *st_dest ) {
int ndp_process_advert ( struct pk_buff *pkb, struct sockaddr_tcpip *st_src __unused,
struct sockaddr_tcpip *st_dest __unused ) {
struct neighbour_advert *nadvert = pkb->data;
struct ndp_entry *ndp;