summaryrefslogtreecommitdiff
path: root/nuttx/graphics/nxsu/nx_kbdin.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/graphics/nxsu/nx_kbdin.c')
-rw-r--r--nuttx/graphics/nxsu/nx_kbdin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/graphics/nxsu/nx_kbdin.c b/nuttx/graphics/nxsu/nx_kbdin.c
index 54081d662..4a1b93d09 100644
--- a/nuttx/graphics/nxsu/nx_kbdin.c
+++ b/nuttx/graphics/nxsu/nx_kbdin.c
@@ -1,7 +1,7 @@
/****************************************************************************
* graphics/nxsu/nx_kbdin.c
*
- * Copyright (C) 2008 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -39,7 +39,7 @@
#include <nuttx/config.h>
-#include <sys/types.h>
+#include <stdint.h>
#include <errno.h>
#include <debug.h>
@@ -81,7 +81,7 @@
*
****************************************************************************/
-int nx_kbdin(NXHANDLE handle, ubyte nch, FAR const ubyte *ch)
+int nx_kbdin(NXHANDLE handle, uint8_t nch, FAR const uint8_t *ch)
{
FAR struct nxfe_state_s *fe = (FAR struct nxfe_state_s *)handle;
FAR struct nxbe_window_s *wnd = fe->be.topwnd;