summaryrefslogtreecommitdiff
path: root/nuttx/net/netdev_foreach.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-15 15:57:25 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-15 15:57:25 +0000
commitde5703237a8973502fdd4c87e993a998be192863 (patch)
tree0518890e63c2ce99bace1b45cbc1363fb40c85f1 /nuttx/net/netdev_foreach.c
parentd7b3eff5850c1bbcf197c50a3c2a44e6a04f81c9 (diff)
downloadpx4-nuttx-de5703237a8973502fdd4c87e993a998be192863.tar.gz
px4-nuttx-de5703237a8973502fdd4c87e993a998be192863.tar.bz2
px4-nuttx-de5703237a8973502fdd4c87e993a998be192863.zip
Changing NuttX fixed size type names to C99 standard names -- things will be broken for awhile
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2346 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/net/netdev_foreach.c')
-rw-r--r--nuttx/net/netdev_foreach.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/nuttx/net/netdev_foreach.c b/nuttx/net/netdev_foreach.c
index 760ed20c8..f7d92ce65 100644
--- a/nuttx/net/netdev_foreach.c
+++ b/nuttx/net/netdev_foreach.c
@@ -1,7 +1,7 @@
/****************************************************************************
* net/netdev_foreach.c
*
- * Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -40,7 +40,6 @@
#include <nuttx/config.h>
#if defined(CONFIG_NET) && CONFIG_NSOCKET_DESCRIPTORS > 0
-#include <sys/types.h>
#include <debug.h>
#include <nuttx/net.h>
#include <net/uip/uip-arch.h>
@@ -48,7 +47,7 @@
#include "net_internal.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************