summaryrefslogtreecommitdiff
path: root/nuttx/sched/mq_open.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-14 19:30:18 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-14 19:30:18 +0000
commit6260f872623acfe046f62a728405dbadc2a60c8c (patch)
treed10315fb8eeff8dadcbde87cc1e0715d015bf261 /nuttx/sched/mq_open.c
parent59f367c060c408a9c9f2ee6db3a4fd498c4a2724 (diff)
downloadpx4-nuttx-6260f872623acfe046f62a728405dbadc2a60c8c.tar.gz
px4-nuttx-6260f872623acfe046f62a728405dbadc2a60c8c.tar.bz2
px4-nuttx-6260f872623acfe046f62a728405dbadc2a60c8c.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@2337 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/mq_open.c')
-rw-r--r--nuttx/sched/mq_open.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/nuttx/sched/mq_open.c b/nuttx/sched/mq_open.c
index 4780d396b..9e3a3e77c 100644
--- a/nuttx/sched/mq_open.c
+++ b/nuttx/sched/mq_open.c
@@ -40,6 +40,7 @@
#include <nuttx/config.h>
#include <sys/types.h>
+#include <stdint.h>
#include <stdarg.h>
#include <mqueue.h>
#include <fcntl.h>
@@ -47,7 +48,9 @@
#include <sched.h>
#include <errno.h>
#include <debug.h>
+
#include <nuttx/kmalloc.h>
+
#include "os_internal.h"
#include "mq_internal.h"