From 33d20a1c87eb7cae586cc0d444729eda6c46e723 Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 14 Dec 2009 20:51:11 +0000 Subject: Switching to C99 stdint.h types git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2338 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/lib/lib_strerror.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'nuttx/lib/lib_strerror.c') diff --git a/nuttx/lib/lib_strerror.c b/nuttx/lib/lib_strerror.c index 994af8d5b..4a3c891a1 100644 --- a/nuttx/lib/lib_strerror.c +++ b/nuttx/lib/lib_strerror.c @@ -1,7 +1,7 @@ /************************************************************************ - * lib_strerror.c + * lib/lib_strerror.c * - * Copyright (C) 2007 Gregory Nutt. All rights reserved. + * Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -14,7 +14,7 @@ * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. - * 3. Neither the name Gregory Nutt nor the names of its contributors may be + * 3. Neither the name NuttX nor the names of its contributors may be * used to endorse or promote products derived from this software * without specific prior written permission. * @@ -38,7 +38,8 @@ ************************************************************************/ #include -#include + +#include #include #include @@ -52,7 +53,7 @@ struct errno_strmap_s { - ubyte errnum; + uint8_t errnum; const char *str; }; -- cgit v1.2.3