summaryrefslogtreecommitdiff
path: root/nuttx/sched/timer_create.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/timer_create.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/timer_create.c')
-rw-r--r--nuttx/sched/timer_create.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/nuttx/sched/timer_create.c b/nuttx/sched/timer_create.c
index 4394095fc..c4f3cbd87 100644
--- a/nuttx/sched/timer_create.c
+++ b/nuttx/sched/timer_create.c
@@ -1,7 +1,7 @@
/********************************************************************************
* sched/timer_create.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
@@ -38,12 +38,15 @@
********************************************************************************/
#include <nuttx/config.h>
+
+#include <stdint.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include <string.h>
#include <wdog.h>
#include <errno.h>
+
#include "timer_internal.h"
#ifndef CONFIG_DISABLE_POSIX_TIMERS