summaryrefslogtreecommitdiff
path: root/nuttx/examples/udp
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-15 19:00:40 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-15 19:00:40 +0000
commit08b2e5a5495fb08277274eaaf91c21069e0fbadf (patch)
tree8fd7037b0159064a937714529251eb34ec4f4e73 /nuttx/examples/udp
parentefcfa33c1fa5728dc7c8dd9fd9f20ed7d8a0b27a (diff)
downloadpx4-nuttx-08b2e5a5495fb08277274eaaf91c21069e0fbadf.tar.gz
px4-nuttx-08b2e5a5495fb08277274eaaf91c21069e0fbadf.tar.bz2
px4-nuttx-08b2e5a5495fb08277274eaaf91c21069e0fbadf.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@2351 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/udp')
-rw-r--r--nuttx/examples/udp/udp-server.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/nuttx/examples/udp/udp-server.c b/nuttx/examples/udp/udp-server.c
index 454efe653..495a71320 100644
--- a/nuttx/examples/udp/udp-server.c
+++ b/nuttx/examples/udp/udp-server.c
@@ -1,7 +1,7 @@
/****************************************************************************
* examples/udp/udp-server.c
*
- * Copyright (C) 2007 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
@@ -37,7 +37,6 @@
* Included Files
****************************************************************************/
-#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>