diff --git a/libc/Kconfig b/libc/Kconfig index 1c93bb0475..bd470be7f5 100644 --- a/libc/Kconfig +++ b/libc/Kconfig @@ -30,7 +30,7 @@ config LIB_HOMEDIR ---help--- The home directory to use with operations like such as 'cd ~' -source lib/math/Kconfig +source libc/math/Kconfig config NOPRINTF_FIELDWIDTH bool "Disable sprintf support fieldwidth" diff --git a/libc/Makefile b/libc/Makefile index 406c2276ef..318816ba71 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -1,5 +1,5 @@ ############################################################################ -# lib/Makefile +# libc/Makefile # # Copyright (C) 2007-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt @@ -66,9 +66,9 @@ COBJS = $(CSRCS:.c=$(OBJEXT)) SRCS = $(ASRCS) $(CSRCS) OBJS = $(AOBJS) $(COBJS) -UBIN = libulib$(LIBEXT) -KBIN = libklib$(LIBEXT) -BIN = liblib$(LIBEXT) +UBIN = libuc$(LIBEXT) +KBIN = libkc$(LIBEXT) +BIN = libc$(LIBEXT) all: $(BIN) diff --git a/libc/README.txt b/libc/README.txt index e99304841b..ed672d0388 100644 --- a/libc/README.txt +++ b/libc/README.txt @@ -21,7 +21,7 @@ it is critical to separate the user-mode OS interfaces in this way. Sub-Directories =============== -The files in the lib/ directory are organized (mostly) according which file +The files in the libc/ directory are organized (mostly) according which file in the include/ directory provides the prototype for library functions. So we have: diff --git a/libc/dirent/Make.defs b/libc/dirent/Make.defs index cc1d6b7839..f2927bed82 100644 --- a/libc/dirent/Make.defs +++ b/libc/dirent/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/dirent/Make.defs +# libc/dirent/Make.defs # # Copyright (C) 2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/dirent/lib_readdirr.c b/libc/dirent/lib_readdirr.c index 47c5b9a7bd..93c99ac283 100644 --- a/libc/dirent/lib_readdirr.c +++ b/libc/dirent/lib_readdirr.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/dirent/lib_readdirr.c + * libc/dirent/lib_readdirr.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/dirent/lib_telldir.c b/libc/dirent/lib_telldir.c index 3753b326e9..f77a4a1c21 100644 --- a/libc/dirent/lib_telldir.c +++ b/libc/dirent/lib_telldir.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/dirent/fs_telldir.c + * libc/dirent/fs_telldir.c * * Copyright (C) 2007-2008, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/fixedmath/Make.defs b/libc/fixedmath/Make.defs index 578e330153..b53df2b2c0 100644 --- a/libc/fixedmath/Make.defs +++ b/libc/fixedmath/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/fixedmath/Make.defs +# libc/fixedmath/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/fixedmath/lib_b16atan2.c b/libc/fixedmath/lib_b16atan2.c index 69d132f80f..443ab7be34 100644 --- a/libc/fixedmath/lib_b16atan2.c +++ b/libc/fixedmath/lib_b16atan2.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/fixedmath/lib_b16atan2.c + * libc/fixedmath/lib_b16atan2.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/fixedmath/lib_b16cos.c b/libc/fixedmath/lib_b16cos.c index 3e9229029e..0ebe482624 100644 --- a/libc/fixedmath/lib_b16cos.c +++ b/libc/fixedmath/lib_b16cos.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/fixedmath/lib_b16cos.c + * libc/fixedmath/lib_b16cos.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/fixedmath/lib_b16sin.c b/libc/fixedmath/lib_b16sin.c index 491b0ec782..9cd2f0da3e 100644 --- a/libc/fixedmath/lib_b16sin.c +++ b/libc/fixedmath/lib_b16sin.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/fixedmath/lib_b16sin.c + * libc/fixedmath/lib_b16sin.c * * Copyright (C) 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/fixedmath/lib_fixedmath.c b/libc/fixedmath/lib_fixedmath.c index c1a710e739..9e9213b4fc 100644 --- a/libc/fixedmath/lib_fixedmath.c +++ b/libc/fixedmath/lib_fixedmath.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/math/lib_fixedmath.c + * libc/math/lib_fixedmath.c * * Copyright (C) 2008-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/fixedmath/lib_rint.c b/libc/fixedmath/lib_rint.c index 3a6407b8c0..a1212c970b 100644 --- a/libc/fixedmath/lib_rint.c +++ b/libc/fixedmath/lib_rint.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/fixedmath/lib_rint.c + * libc/fixedmath/lib_rint.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/lib_internal.h b/libc/lib_internal.h index 5da0ac9249..c09c751d4a 100644 --- a/libc/lib_internal.h +++ b/libc/lib_internal.h @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/lib_internal.h + * libc/lib_internal.h * * Copyright (C) 2007-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/libgen/Make.defs b/libc/libgen/Make.defs index f126455124..6e786655d9 100644 --- a/libc/libgen/Make.defs +++ b/libc/libgen/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/libgen/Make.defs +# libc/libgen/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/libgen/lib_basename.c b/libc/libgen/lib_basename.c index 986c6b8520..68188edbf5 100644 --- a/libc/libgen/lib_basename.c +++ b/libc/libgen/lib_basename.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/libgen/lib_basename.c + * libc/libgen/lib_basename.c * * Copyright (C) 2007, 2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/libgen/lib_dirname.c b/libc/libgen/lib_dirname.c index 248293a605..6d076fd610 100644 --- a/libc/libgen/lib_dirname.c +++ b/libc/libgen/lib_dirname.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/libgen/lib_dirname.c + * libc/libgen/lib_dirname.c * * Copyright (C) 2007, 2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/math/Make.defs b/libc/math/Make.defs index 73d0be6f3b..bc6a265f0e 100644 --- a/libc/math/Make.defs +++ b/libc/math/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/math/Make.defs +# libc/math/Make.defs # # Copyright (C) 2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/math/lib_acos.c b/libc/math/lib_acos.c index d5ec36b9ff..147003237f 100644 --- a/libc/math/lib_acos.c +++ b/libc/math/lib_acos.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_acos.c + * libc/math/lib_acos.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_acosf.c b/libc/math/lib_acosf.c index e14a73a6ea..447b2767f1 100644 --- a/libc/math/lib_acosf.c +++ b/libc/math/lib_acosf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_acosf.c + * libc/math/lib_acosf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_acosl.c b/libc/math/lib_acosl.c index 9113305776..a0f2262380 100644 --- a/libc/math/lib_acosl.c +++ b/libc/math/lib_acosl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_acos.c + * libc/math/lib_acos.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_asin.c b/libc/math/lib_asin.c index 61b9535310..d9941a7e5b 100644 --- a/libc/math/lib_asin.c +++ b/libc/math/lib_asin.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_sin.c + * libc/math/lib_sin.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_asinf.c b/libc/math/lib_asinf.c index 17669a9346..57e518acb4 100644 --- a/libc/math/lib_asinf.c +++ b/libc/math/lib_asinf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_sinf.c + * libc/math/lib_sinf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_asinl.c b/libc/math/lib_asinl.c index dbb2bc3a2e..19f284e535 100644 --- a/libc/math/lib_asinl.c +++ b/libc/math/lib_asinl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_sinl.c + * libc/math/lib_sinl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_atan.c b/libc/math/lib_atan.c index b4db8fb313..44d68ece2f 100644 --- a/libc/math/lib_atan.c +++ b/libc/math/lib_atan.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_atan.c + * libc/math/lib_atan.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_atan2.c b/libc/math/lib_atan2.c index 82d1f47ec3..6d7d2ad482 100644 --- a/libc/math/lib_atan2.c +++ b/libc/math/lib_atan2.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_atan2.c + * libc/math/lib_atan2.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_atan2f.c b/libc/math/lib_atan2f.c index a60d32c655..7ff9af1305 100644 --- a/libc/math/lib_atan2f.c +++ b/libc/math/lib_atan2f.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_atan2f.c + * libc/math/lib_atan2f.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_atan2l.c b/libc/math/lib_atan2l.c index 07fcd9669b..48bfd06f39 100644 --- a/libc/math/lib_atan2l.c +++ b/libc/math/lib_atan2l.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_atan2l.c + * libc/math/lib_atan2l.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_atanf.c b/libc/math/lib_atanf.c index 7c540dd163..a84605787a 100644 --- a/libc/math/lib_atanf.c +++ b/libc/math/lib_atanf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_atanf.c + * libc/math/lib_atanf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_atanl.c b/libc/math/lib_atanl.c index 0fa2030988..752d493070 100644 --- a/libc/math/lib_atanl.c +++ b/libc/math/lib_atanl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_atanl.c + * libc/math/lib_atanl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_ceil.c b/libc/math/lib_ceil.c index 0e76029967..3c6678dc1d 100644 --- a/libc/math/lib_ceil.c +++ b/libc/math/lib_ceil.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_ceil.c + * libc/math/lib_ceil.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_ceilf.c b/libc/math/lib_ceilf.c index 0721ffc22a..afbe2cf13b 100644 --- a/libc/math/lib_ceilf.c +++ b/libc/math/lib_ceilf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_ceilf.c + * libc/math/lib_ceilf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_ceill.c b/libc/math/lib_ceill.c index a24b56f683..757016b530 100644 --- a/libc/math/lib_ceill.c +++ b/libc/math/lib_ceill.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_ceil;.c + * libc/math/lib_ceil;.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_cos.c b/libc/math/lib_cos.c index aa672b8559..4b4e1a20b9 100644 --- a/libc/math/lib_cos.c +++ b/libc/math/lib_cos.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_cos.c + * libc/math/lib_cos.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_cosf.c b/libc/math/lib_cosf.c index 093a8a0024..d9ac951f62 100644 --- a/libc/math/lib_cosf.c +++ b/libc/math/lib_cosf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_cosf.c + * libc/math/lib_cosf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_cosh.c b/libc/math/lib_cosh.c index 1be44d2933..3246ea5f96 100644 --- a/libc/math/lib_cosh.c +++ b/libc/math/lib_cosh.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_cosh.c + * libc/math/lib_cosh.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_coshf.c b/libc/math/lib_coshf.c index d5e5ea14de..f0c28ab2ea 100644 --- a/libc/math/lib_coshf.c +++ b/libc/math/lib_coshf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_coshf.c + * libc/math/lib_coshf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_coshl.c b/libc/math/lib_coshl.c index 4576b88769..957ec61a73 100644 --- a/libc/math/lib_coshl.c +++ b/libc/math/lib_coshl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_coshl.c + * libc/math/lib_coshl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_cosl.c b/libc/math/lib_cosl.c index 25dd861393..972d4aa9da 100644 --- a/libc/math/lib_cosl.c +++ b/libc/math/lib_cosl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_cosl.c + * libc/math/lib_cosl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_exp.c b/libc/math/lib_exp.c index 1e3120453d..62494251de 100644 --- a/libc/math/lib_exp.c +++ b/libc/math/lib_exp.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_exp.c + * libc/math/lib_exp.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_expf.c b/libc/math/lib_expf.c index eac4641c67..3e43c54a6c 100644 --- a/libc/math/lib_expf.c +++ b/libc/math/lib_expf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_expf.c + * libc/math/lib_expf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_expl.c b/libc/math/lib_expl.c index 053103c9bb..231faa35f1 100644 --- a/libc/math/lib_expl.c +++ b/libc/math/lib_expl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_expl.c + * libc/math/lib_expl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_fabs.c b/libc/math/lib_fabs.c index ff99ceb642..774755087b 100644 --- a/libc/math/lib_fabs.c +++ b/libc/math/lib_fabs.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_fabs.c + * libc/math/lib_fabs.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_fabsf.c b/libc/math/lib_fabsf.c index 0ea186ca03..4c8ebae620 100644 --- a/libc/math/lib_fabsf.c +++ b/libc/math/lib_fabsf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_fabsf.c + * libc/math/lib_fabsf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_fabsl.c b/libc/math/lib_fabsl.c index 5313d897da..96ac7d5db3 100644 --- a/libc/math/lib_fabsl.c +++ b/libc/math/lib_fabsl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_fabsl.c + * libc/math/lib_fabsl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_floor.c b/libc/math/lib_floor.c index f0c4477a04..3330607ce9 100644 --- a/libc/math/lib_floor.c +++ b/libc/math/lib_floor.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_floor.c + * libc/math/lib_floor.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_floorf.c b/libc/math/lib_floorf.c index 2becb5fac9..81483d4c9c 100644 --- a/libc/math/lib_floorf.c +++ b/libc/math/lib_floorf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_floorf.c + * libc/math/lib_floorf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_floorl.c b/libc/math/lib_floorl.c index e38ce80ed3..0d9ec43b45 100644 --- a/libc/math/lib_floorl.c +++ b/libc/math/lib_floorl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_floorl.c + * libc/math/lib_floorl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_fmod.c b/libc/math/lib_fmod.c index 939e7e18ad..c66210cdea 100644 --- a/libc/math/lib_fmod.c +++ b/libc/math/lib_fmod.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_fmod.c + * libc/math/lib_fmod.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_fmodf.c b/libc/math/lib_fmodf.c index 085786f172..d70bb791ca 100644 --- a/libc/math/lib_fmodf.c +++ b/libc/math/lib_fmodf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_fmodf.c + * libc/math/lib_fmodf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_fmodl.c b/libc/math/lib_fmodl.c index 51c5e95ec8..1299bf6e89 100644 --- a/libc/math/lib_fmodl.c +++ b/libc/math/lib_fmodl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_fmodl.c + * libc/math/lib_fmodl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_frexp.c b/libc/math/lib_frexp.c index 56feee8639..b9576dfd4d 100644 --- a/libc/math/lib_frexp.c +++ b/libc/math/lib_frexp.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_frexp.c + * libc/math/lib_frexp.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_frexpf.c b/libc/math/lib_frexpf.c index 1fb0df3d89..d93ffb1731 100644 --- a/libc/math/lib_frexpf.c +++ b/libc/math/lib_frexpf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_frexpf.c + * libc/math/lib_frexpf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_frexpl.c b/libc/math/lib_frexpl.c index 87708ad86c..90993b137b 100644 --- a/libc/math/lib_frexpl.c +++ b/libc/math/lib_frexpl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_frexpl.c + * libc/math/lib_frexpl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_ldexp.c b/libc/math/lib_ldexp.c index 4c7b2b721b..9b74d53d71 100644 --- a/libc/math/lib_ldexp.c +++ b/libc/math/lib_ldexp.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_ldexp.c + * libc/math/lib_ldexp.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_ldexpf.c b/libc/math/lib_ldexpf.c index c61d633d5c..f3aaf555b4 100644 --- a/libc/math/lib_ldexpf.c +++ b/libc/math/lib_ldexpf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_ldexpf.c + * libc/math/lib_ldexpf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_ldexpl.c b/libc/math/lib_ldexpl.c index b9a0f4a865..29764aaba3 100644 --- a/libc/math/lib_ldexpl.c +++ b/libc/math/lib_ldexpl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_ldexpl.c + * libc/math/lib_ldexpl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_libexpi.c b/libc/math/lib_libexpi.c index 1ec947a71a..33ba537b1e 100644 --- a/libc/math/lib_libexpi.c +++ b/libc/math/lib_libexpi.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_libexpi.c + * libc/math/lib_libexpi.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_libsqrtapprox.c b/libc/math/lib_libsqrtapprox.c index 5c556c3a0e..b6a9b0d54c 100644 --- a/libc/math/lib_libsqrtapprox.c +++ b/libc/math/lib_libsqrtapprox.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_libsqrtapprox.c + * libc/math/lib_libsqrtapprox.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_log.c b/libc/math/lib_log.c index 1350ba4fea..7156f6b411 100644 --- a/libc/math/lib_log.c +++ b/libc/math/lib_log.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_log.c + * libc/math/lib_log.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_log10.c b/libc/math/lib_log10.c index 47854fca44..9daa914925 100644 --- a/libc/math/lib_log10.c +++ b/libc/math/lib_log10.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_log10.c + * libc/math/lib_log10.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_log10f.c b/libc/math/lib_log10f.c index 651071920f..778daedd5b 100644 --- a/libc/math/lib_log10f.c +++ b/libc/math/lib_log10f.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_log10f.c + * libc/math/lib_log10f.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_log10l.c b/libc/math/lib_log10l.c index 65892262a8..efbeb721b4 100644 --- a/libc/math/lib_log10l.c +++ b/libc/math/lib_log10l.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_log10l.c + * libc/math/lib_log10l.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_log2.c b/libc/math/lib_log2.c index 0aa1e80101..4da39acdc3 100644 --- a/libc/math/lib_log2.c +++ b/libc/math/lib_log2.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_log2.c + * libc/math/lib_log2.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_log2f.c b/libc/math/lib_log2f.c index e160ca59e3..f514e5a9e0 100644 --- a/libc/math/lib_log2f.c +++ b/libc/math/lib_log2f.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_log2f.c + * libc/math/lib_log2f.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_log2l.c b/libc/math/lib_log2l.c index 21d26d4d7b..21e80a930f 100644 --- a/libc/math/lib_log2l.c +++ b/libc/math/lib_log2l.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_log2l.c + * libc/math/lib_log2l.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_logf.c b/libc/math/lib_logf.c index 1d31aa0c0b..3815fef84c 100644 --- a/libc/math/lib_logf.c +++ b/libc/math/lib_logf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_logf.c + * libc/math/lib_logf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_logl.c b/libc/math/lib_logl.c index 577f9cee2e..6128160114 100644 --- a/libc/math/lib_logl.c +++ b/libc/math/lib_logl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_lol.c + * libc/math/lib_lol.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_modf.c b/libc/math/lib_modf.c index 9dc6284c20..f3f25f6fb0 100644 --- a/libc/math/lib_modf.c +++ b/libc/math/lib_modf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_modf.c + * libc/math/lib_modf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_modff.c b/libc/math/lib_modff.c index 4eec2ae17f..28d3a3ae0b 100644 --- a/libc/math/lib_modff.c +++ b/libc/math/lib_modff.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_modff.c + * libc/math/lib_modff.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_modfl.c b/libc/math/lib_modfl.c index 3b04571f3a..77bba0e0c0 100644 --- a/libc/math/lib_modfl.c +++ b/libc/math/lib_modfl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_modfl.c + * libc/math/lib_modfl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_pow.c b/libc/math/lib_pow.c index af0a55d32f..a19d491fad 100644 --- a/libc/math/lib_pow.c +++ b/libc/math/lib_pow.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_pow.c + * libc/math/lib_pow.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_powf.c b/libc/math/lib_powf.c index a43f9cf82a..5709048982 100644 --- a/libc/math/lib_powf.c +++ b/libc/math/lib_powf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_powf.c + * libc/math/lib_powf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_powl.c b/libc/math/lib_powl.c index f5fbf042e9..81438217cf 100644 --- a/libc/math/lib_powl.c +++ b/libc/math/lib_powl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_powl.c + * libc/math/lib_powl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_sin.c b/libc/math/lib_sin.c index c04d6b88b9..e005d98cb6 100644 --- a/libc/math/lib_sin.c +++ b/libc/math/lib_sin.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_sin.c + * libc/math/lib_sin.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_sinf.c b/libc/math/lib_sinf.c index e298bbba49..9e493d8efc 100644 --- a/libc/math/lib_sinf.c +++ b/libc/math/lib_sinf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_sinf.c + * libc/math/lib_sinf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_sinh.c b/libc/math/lib_sinh.c index f33852433b..0c3e2d11d8 100644 --- a/libc/math/lib_sinh.c +++ b/libc/math/lib_sinh.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_sinh.c + * libc/math/lib_sinh.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_sinhf.c b/libc/math/lib_sinhf.c index e15cb14dc4..e9d198440f 100644 --- a/libc/math/lib_sinhf.c +++ b/libc/math/lib_sinhf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_sinhf.c + * libc/math/lib_sinhf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_sinhl.c b/libc/math/lib_sinhl.c index b0fea29149..a1bcad81e8 100644 --- a/libc/math/lib_sinhl.c +++ b/libc/math/lib_sinhl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_sinhl.c + * libc/math/lib_sinhl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_sinl.c b/libc/math/lib_sinl.c index a69b548cb3..6ed539a39d 100644 --- a/libc/math/lib_sinl.c +++ b/libc/math/lib_sinl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_sinl.c + * libc/math/lib_sinl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_sqrt.c b/libc/math/lib_sqrt.c index d77997f7cd..e8a1c42ea2 100644 --- a/libc/math/lib_sqrt.c +++ b/libc/math/lib_sqrt.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_sqrt.c + * libc/math/lib_sqrt.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_sqrtf.c b/libc/math/lib_sqrtf.c index 81817a0406..cf45ccacc3 100644 --- a/libc/math/lib_sqrtf.c +++ b/libc/math/lib_sqrtf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_sqrtf.c + * libc/math/lib_sqrtf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_sqrtl.c b/libc/math/lib_sqrtl.c index 6674fe50f8..4035992feb 100644 --- a/libc/math/lib_sqrtl.c +++ b/libc/math/lib_sqrtl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_sqrtl.c + * libc/math/lib_sqrtl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_tan.c b/libc/math/lib_tan.c index bce14b3270..4c091c09bc 100644 --- a/libc/math/lib_tan.c +++ b/libc/math/lib_tan.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_tan.c + * libc/math/lib_tan.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_tanf.c b/libc/math/lib_tanf.c index 3db3bda265..0c9110a0b7 100644 --- a/libc/math/lib_tanf.c +++ b/libc/math/lib_tanf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_tanf.c + * libc/math/lib_tanf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_tanh.c b/libc/math/lib_tanh.c index 46fddd06df..3b9ea0f418 100644 --- a/libc/math/lib_tanh.c +++ b/libc/math/lib_tanh.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_tanh.c + * libc/math/lib_tanh.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_tanhf.c b/libc/math/lib_tanhf.c index 94d15cc60d..43d4182044 100644 --- a/libc/math/lib_tanhf.c +++ b/libc/math/lib_tanhf.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_tanhf.c + * libc/math/lib_tanhf.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_tanhl.c b/libc/math/lib_tanhl.c index 23c11d6672..5aafd1e7b9 100644 --- a/libc/math/lib_tanhl.c +++ b/libc/math/lib_tanhl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_tanhl.c + * libc/math/lib_tanhl.c * * This file is a part of NuttX: * diff --git a/libc/math/lib_tanl.c b/libc/math/lib_tanl.c index 4973aa073c..e77abe0f1e 100644 --- a/libc/math/lib_tanl.c +++ b/libc/math/lib_tanl.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/math/lib_tanl.c + * libc/math/lib_tanl.c * * This file is a part of NuttX: * diff --git a/libc/misc/Make.defs b/libc/misc/Make.defs index c12533f754..f4284ac60c 100644 --- a/libc/misc/Make.defs +++ b/libc/misc/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/misc/Make.defs +# libc/misc/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/misc/lib_crc32.c b/libc/misc/lib_crc32.c index f851598e01..ae73ba3d79 100644 --- a/libc/misc/lib_crc32.c +++ b/libc/misc/lib_crc32.c @@ -1,5 +1,5 @@ /************************************************************************************************ - * lib/misc/lib_crc32.c + * libc/misc/lib_crc32.c * * This file is a part of NuttX: * diff --git a/libc/misc/lib_dbg.c b/libc/misc/lib_dbg.c index aacdaa30a9..5605ff828f 100644 --- a/libc/misc/lib_dbg.c +++ b/libc/misc/lib_dbg.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/misc/lib_dbg.c + * libc/misc/lib_dbg.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/misc/lib_dumpbuffer.c b/libc/misc/lib_dumpbuffer.c index 155468ca12..52158b2204 100644 --- a/libc/misc/lib_dumpbuffer.c +++ b/libc/misc/lib_dumpbuffer.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/misc/lib_dumpbuffer.c + * libc/misc/lib_dumpbuffer.c * * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/misc/lib_filesem.c b/libc/misc/lib_filesem.c index 1d1f25c2fd..5cc4624ec6 100644 --- a/libc/misc/lib_filesem.c +++ b/libc/misc/lib_filesem.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/misc/lib_filesem.c + * libc/misc/lib_filesem.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/misc/lib_init.c b/libc/misc/lib_init.c index 3403a837b9..6a120f7b13 100644 --- a/libc/misc/lib_init.c +++ b/libc/misc/lib_init.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/misc/lib_init.c + * libc/misc/lib_init.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/misc/lib_match.c b/libc/misc/lib_match.c index 18e0632ec6..a8cfad3293 100644 --- a/libc/misc/lib_match.c +++ b/libc/misc/lib_match.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/misc/lib_match.c - simple shell-style filename matcher + * libc/misc/lib_match.c - simple shell-style filename matcher * * Simple shell-style filename pattern matcher written by Jef Poskanzer * This pattern matcher only handles '?', '*' and '**', and multiple diff --git a/libc/misc/lib_sendfile.c b/libc/misc/lib_sendfile.c index a82eb325e7..8a38dc317e 100644 --- a/libc/misc/lib_sendfile.c +++ b/libc/misc/lib_sendfile.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/misc/lib_streamsem.c + * libc/misc/lib_streamsem.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/misc/lib_streamsem.c b/libc/misc/lib_streamsem.c index fdf494e751..e38298bdbb 100644 --- a/libc/misc/lib_streamsem.c +++ b/libc/misc/lib_streamsem.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/misc/lib_streamsem.c + * libc/misc/lib_streamsem.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/mqueue/Make.defs b/libc/mqueue/Make.defs index 40dc6c13e6..826970fa32 100644 --- a/libc/mqueue/Make.defs +++ b/libc/mqueue/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/mqueue/Make.defs +# libc/mqueue/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/mqueue/mq_getattr.c b/libc/mqueue/mq_getattr.c index 9c9f47fdce..2fc0e131be 100644 --- a/libc/mqueue/mq_getattr.c +++ b/libc/mqueue/mq_getattr.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/mqueue/mq_getattr.c + * libc/mqueue/mq_getattr.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/mqueue/mq_setattr.c b/libc/mqueue/mq_setattr.c index 1276d64e8a..45a848e6d7 100644 --- a/libc/mqueue/mq_setattr.c +++ b/libc/mqueue/mq_setattr.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/mqueue/mq_setattr.c + * libc/mqueue/mq_setattr.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/net/Make.defs b/libc/net/Make.defs index ae041bd2c5..9d4e5c06b3 100644 --- a/libc/net/Make.defs +++ b/libc/net/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/net/Make.defs +# libc/net/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/net/lib_etherntoa.c b/libc/net/lib_etherntoa.c index f89f205a2e..91fb01c570 100644 --- a/libc/net/lib_etherntoa.c +++ b/libc/net/lib_etherntoa.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/net/lib_etherntoa.c + * libc/net/lib_etherntoa.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/net/lib_htonl.c b/libc/net/lib_htonl.c index e4c3e53838..a10f54f379 100644 --- a/libc/net/lib_htonl.c +++ b/libc/net/lib_htonl.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/net/lib_ntohl.c + * libc/net/lib_ntohl.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/net/lib_htons.c b/libc/net/lib_htons.c index b4117e1dc2..13addd9136 100644 --- a/libc/net/lib_htons.c +++ b/libc/net/lib_htons.c @@ -1,5 +1,5 @@ /*************************************************************************** - * lib/net/lib_htons.c + * libc/net/lib_htons.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/net/lib_inetaddr.c b/libc/net/lib_inetaddr.c index 48b01d682f..46c6c548dc 100644 --- a/libc/net/lib_inetaddr.c +++ b/libc/net/lib_inetaddr.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/net/lib_inetaddr.c + * libc/net/lib_inetaddr.c * * Copyright (C) 2011 Yu Qiang. All rights reserved. * Author: Yu Qiang diff --git a/libc/net/lib_inetntoa.c b/libc/net/lib_inetntoa.c index 0f4fb61df6..e2d92d8648 100644 --- a/libc/net/lib_inetntoa.c +++ b/libc/net/lib_inetntoa.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/net/lib_inetntoa.c + * libc/net/lib_inetntoa.c * * Copyright (C) 2007-2008, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/net/lib_inetntop.c b/libc/net/lib_inetntop.c index dc6a2d0d79..25c32c48cf 100644 --- a/libc/net/lib_inetntop.c +++ b/libc/net/lib_inetntop.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/net/lib_inetntop.c + * libc/net/lib_inetntop.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/net/lib_inetpton.c b/libc/net/lib_inetpton.c index 5371cd3f21..c5f117535b 100644 --- a/libc/net/lib_inetpton.c +++ b/libc/net/lib_inetpton.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/net/lib_inetpton.c + * libc/net/lib_inetpton.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/Make.defs b/libc/pthread/Make.defs index a1eba7bb0a..07e4f05701 100644 --- a/libc/pthread/Make.defs +++ b/libc/pthread/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/pthread/Make.defs +# libc/pthread/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/pthread/pthread_attrdestroy.c b/libc/pthread/pthread_attrdestroy.c index 103528c7e1..37ad46ebcd 100644 --- a/libc/pthread/pthread_attrdestroy.c +++ b/libc/pthread/pthread_attrdestroy.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_attrdestroy.c + * libc/pthread/pthread_attrdestroy.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_attrgetinheritsched.c b/libc/pthread/pthread_attrgetinheritsched.c index 02d6e0b7c0..6ec8ae71f6 100644 --- a/libc/pthread/pthread_attrgetinheritsched.c +++ b/libc/pthread/pthread_attrgetinheritsched.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_attrgetinheritsched.c + * libc/pthread/pthread_attrgetinheritsched.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_attrgetschedparam.c b/libc/pthread/pthread_attrgetschedparam.c index c6bf55dea8..6bcc9618e9 100644 --- a/libc/pthread/pthread_attrgetschedparam.c +++ b/libc/pthread/pthread_attrgetschedparam.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_attrgetschedparam.c + * libc/pthread/pthread_attrgetschedparam.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_attrgetschedpolicy.c b/libc/pthread/pthread_attrgetschedpolicy.c index c42b828c96..8845e2bd81 100644 --- a/libc/pthread/pthread_attrgetschedpolicy.c +++ b/libc/pthread/pthread_attrgetschedpolicy.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_attrgetschedpolicy.c + * libc/pthread/pthread_attrgetschedpolicy.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_attrgetstacksize.c b/libc/pthread/pthread_attrgetstacksize.c index 2faa586ba8..9fde29e810 100644 --- a/libc/pthread/pthread_attrgetstacksize.c +++ b/libc/pthread/pthread_attrgetstacksize.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_attrgetstacksize.c + * libc/pthread/pthread_attrgetstacksize.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_attrinit.c b/libc/pthread/pthread_attrinit.c index d06a535d78..427a582b91 100644 --- a/libc/pthread/pthread_attrinit.c +++ b/libc/pthread/pthread_attrinit.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_attrinit.c + * libc/pthread/pthread_attrinit.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_attrsetinheritsched.c b/libc/pthread/pthread_attrsetinheritsched.c index df2c2fba33..1102fe176a 100644 --- a/libc/pthread/pthread_attrsetinheritsched.c +++ b/libc/pthread/pthread_attrsetinheritsched.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_attrsetinheritsched.c + * libc/pthread/pthread_attrsetinheritsched.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_attrsetschedparam.c b/libc/pthread/pthread_attrsetschedparam.c index c2ab4d1c41..587d62206b 100644 --- a/libc/pthread/pthread_attrsetschedparam.c +++ b/libc/pthread/pthread_attrsetschedparam.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_attrsetschedparam.c + * libc/pthread/pthread_attrsetschedparam.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_attrsetschedpolicy.c b/libc/pthread/pthread_attrsetschedpolicy.c index 4e43e635de..e1d1c86195 100644 --- a/libc/pthread/pthread_attrsetschedpolicy.c +++ b/libc/pthread/pthread_attrsetschedpolicy.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_attrsetschedpolicy.c + * libc/pthread/pthread_attrsetschedpolicy.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_attrsetstacksize.c b/libc/pthread/pthread_attrsetstacksize.c index 8a826dd3ac..fca993baf8 100644 --- a/libc/pthread/pthread_attrsetstacksize.c +++ b/libc/pthread/pthread_attrsetstacksize.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_attrsetstacksize.c + * libc/pthread/pthread_attrsetstacksize.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_barrierattrdestroy.c b/libc/pthread/pthread_barrierattrdestroy.c index 6d16b9cff8..5519caa61f 100644 --- a/libc/pthread/pthread_barrierattrdestroy.c +++ b/libc/pthread/pthread_barrierattrdestroy.c @@ -1,5 +1,5 @@ /******************************************************************************** - * lib/pthread/pthread_barrierattrdestroy.c + * libc/pthread/pthread_barrierattrdestroy.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_barrierattrgetpshared.c b/libc/pthread/pthread_barrierattrgetpshared.c index d29bc6dfc8..83faffae08 100644 --- a/libc/pthread/pthread_barrierattrgetpshared.c +++ b/libc/pthread/pthread_barrierattrgetpshared.c @@ -1,5 +1,5 @@ /******************************************************************************** - * lib/pthread/pthread_barrierattrgetpshared.c + * libc/pthread/pthread_barrierattrgetpshared.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_barrierattrinit.c b/libc/pthread/pthread_barrierattrinit.c index b5f35ca917..7ab1018835 100644 --- a/libc/pthread/pthread_barrierattrinit.c +++ b/libc/pthread/pthread_barrierattrinit.c @@ -1,5 +1,5 @@ /******************************************************************************** - * lib/pthread/pthread_barrierattrinit.c + * libc/pthread/pthread_barrierattrinit.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_barrierattrsetpshared.c b/libc/pthread/pthread_barrierattrsetpshared.c index d0eecbf5a4..2585de7a0d 100644 --- a/libc/pthread/pthread_barrierattrsetpshared.c +++ b/libc/pthread/pthread_barrierattrsetpshared.c @@ -1,5 +1,5 @@ /******************************************************************************** - * lib/pthread/pthread_barrierattrsetpshared.c + * libc/pthread/pthread_barrierattrsetpshared.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_condattrdestroy.c b/libc/pthread/pthread_condattrdestroy.c index d6c3df5d1a..30a0c4db1b 100644 --- a/libc/pthread/pthread_condattrdestroy.c +++ b/libc/pthread/pthread_condattrdestroy.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_condattrdestroy.c + * libc/pthread/pthread_condattrdestroy.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_condattrinit.c b/libc/pthread/pthread_condattrinit.c index 5721c61593..511376f2e6 100644 --- a/libc/pthread/pthread_condattrinit.c +++ b/libc/pthread/pthread_condattrinit.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_condattrinit.c + * libc/pthread/pthread_condattrinit.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_mutexattrdestroy.c b/libc/pthread/pthread_mutexattrdestroy.c index e9868df68b..82a13c300e 100644 --- a/libc/pthread/pthread_mutexattrdestroy.c +++ b/libc/pthread/pthread_mutexattrdestroy.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_mutexattrdestroy.c + * libc/pthread/pthread_mutexattrdestroy.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_mutexattrgetpshared.c b/libc/pthread/pthread_mutexattrgetpshared.c index bc6379db5f..dc18484ec5 100644 --- a/libc/pthread/pthread_mutexattrgetpshared.c +++ b/libc/pthread/pthread_mutexattrgetpshared.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_mutexattrgetpshared.c + * libc/pthread/pthread_mutexattrgetpshared.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_mutexattrgettype.c b/libc/pthread/pthread_mutexattrgettype.c index 5fb10f3015..3b8b3ec052 100644 --- a/libc/pthread/pthread_mutexattrgettype.c +++ b/libc/pthread/pthread_mutexattrgettype.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_mutexattrgettype.c + * libc/pthread/pthread_mutexattrgettype.c * * Copyright (C) 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_mutexattrinit.c b/libc/pthread/pthread_mutexattrinit.c index f815bf16c1..f8c2721953 100644 --- a/libc/pthread/pthread_mutexattrinit.c +++ b/libc/pthread/pthread_mutexattrinit.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_mutexattrinit.c + * libc/pthread/pthread_mutexattrinit.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_mutexattrsetpshared.c b/libc/pthread/pthread_mutexattrsetpshared.c index 900476fdd2..7501fd980b 100644 --- a/libc/pthread/pthread_mutexattrsetpshared.c +++ b/libc/pthread/pthread_mutexattrsetpshared.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_mutexattrsetpshared.c + * libc/pthread/pthread_mutexattrsetpshared.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/pthread/pthread_mutexattrsettype.c b/libc/pthread/pthread_mutexattrsettype.c index 81427c757e..068a27dc26 100644 --- a/libc/pthread/pthread_mutexattrsettype.c +++ b/libc/pthread/pthread_mutexattrsettype.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/pthread/pthread_mutexattrsettype.c + * libc/pthread/pthread_mutexattrsettype.c * * Copyright (C) 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/queue/Make.defs b/libc/queue/Make.defs index 976e7a2b87..9a843dbdc9 100644 --- a/libc/queue/Make.defs +++ b/libc/queue/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/queue/Make.defs +# libc/queue/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/queue/dq_addafter.c b/libc/queue/dq_addafter.c index bfbe0052d8..e4d1abf63d 100644 --- a/libc/queue/dq_addafter.c +++ b/libc/queue/dq_addafter.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/queue/dq_addafter.c + * libc/queue/dq_addafter.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/queue/dq_addbefore.c b/libc/queue/dq_addbefore.c index d740ea8309..3c403fc944 100644 --- a/libc/queue/dq_addbefore.c +++ b/libc/queue/dq_addbefore.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/queue/dq_addbefore.c + * libc/queue/dq_addbefore.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/queue/dq_addfirst.c b/libc/queue/dq_addfirst.c index 7c7312de3b..56767b9289 100644 --- a/libc/queue/dq_addfirst.c +++ b/libc/queue/dq_addfirst.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/queue/dq_addfirst.c + * libc/queue/dq_addfirst.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/queue/dq_addlast.c b/libc/queue/dq_addlast.c index 745deb27d1..3ef08abd05 100644 --- a/libc/queue/dq_addlast.c +++ b/libc/queue/dq_addlast.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/queue/dq_addlast.c + * libc/queue/dq_addlast.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/queue/dq_rem.c b/libc/queue/dq_rem.c index 218427bf84..db20762c75 100644 --- a/libc/queue/dq_rem.c +++ b/libc/queue/dq_rem.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/queue/dq_rem.c + * libc/queue/dq_rem.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/queue/dq_remfirst.c b/libc/queue/dq_remfirst.c index 26c5fd7a67..e87acc3382 100644 --- a/libc/queue/dq_remfirst.c +++ b/libc/queue/dq_remfirst.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/queue/dq_remfirst.c + * libc/queue/dq_remfirst.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/queue/dq_remlast.c b/libc/queue/dq_remlast.c index 35adc73e2d..18c1823359 100644 --- a/libc/queue/dq_remlast.c +++ b/libc/queue/dq_remlast.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/queue/dq_remlast.c + * libc/queue/dq_remlast.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/queue/sq_addafter.c b/libc/queue/sq_addafter.c index 965ac28444..5d47feba0f 100644 --- a/libc/queue/sq_addafter.c +++ b/libc/queue/sq_addafter.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/queue/sq_addafter.c + * libc/queue/sq_addafter.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/queue/sq_addfirst.c b/libc/queue/sq_addfirst.c index 8fc8e06199..9624861541 100644 --- a/libc/queue/sq_addfirst.c +++ b/libc/queue/sq_addfirst.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/queue/sq_addfirst.c + * libc/queue/sq_addfirst.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/queue/sq_addlast.c b/libc/queue/sq_addlast.c index f9f9625cc0..faa07efb5c 100644 --- a/libc/queue/sq_addlast.c +++ b/libc/queue/sq_addlast.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/queue/sq_addlast.c + * libc/queue/sq_addlast.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/queue/sq_rem.c b/libc/queue/sq_rem.c index 6ba52354d4..720be182cd 100644 --- a/libc/queue/sq_rem.c +++ b/libc/queue/sq_rem.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/queue/sq_rem.c + * libc/queue/sq_rem.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/queue/sq_remafter.c b/libc/queue/sq_remafter.c index 4dcfb06e44..0545a00f95 100644 --- a/libc/queue/sq_remafter.c +++ b/libc/queue/sq_remafter.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/queue/sq_remafter.c + * libc/queue/sq_remafter.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/queue/sq_remfirst.c b/libc/queue/sq_remfirst.c index 43df6de417..f81c18dc2e 100644 --- a/libc/queue/sq_remfirst.c +++ b/libc/queue/sq_remfirst.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/queue/sq_remfirst.c + * libc/queue/sq_remfirst.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/queue/sq_remlast.c b/libc/queue/sq_remlast.c index 92cdbde985..8f045e4932 100644 --- a/libc/queue/sq_remlast.c +++ b/libc/queue/sq_remlast.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/queue/sq_remlast.c + * libc/queue/sq_remlast.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/sched/Make.defs b/libc/sched/Make.defs index f398b755e0..d2356db0f1 100644 --- a/libc/sched/Make.defs +++ b/libc/sched/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/sched/Make.defs +# libc/sched/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/sched/sched_getprioritymax.c b/libc/sched/sched_getprioritymax.c index 14b368dfc0..6ea37e76a9 100644 --- a/libc/sched/sched_getprioritymax.c +++ b/libc/sched/sched_getprioritymax.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/sched/sched_getprioritymax.c + * libc/sched/sched_getprioritymax.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/sched/sched_getprioritymin.c b/libc/sched/sched_getprioritymin.c index 86410cb0f6..dbb46d81eb 100644 --- a/libc/sched/sched_getprioritymin.c +++ b/libc/sched/sched_getprioritymin.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/sched/sched_getprioritymin.c + * libc/sched/sched_getprioritymin.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/semaphore/Make.defs b/libc/semaphore/Make.defs index fdc0fe7d54..b6551ff96a 100644 --- a/libc/semaphore/Make.defs +++ b/libc/semaphore/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/semaphore/Make.defs +# libc/semaphore/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/semaphore/sem_getvalue.c b/libc/semaphore/sem_getvalue.c index 31c6bb7e06..ce9d12611a 100644 --- a/libc/semaphore/sem_getvalue.c +++ b/libc/semaphore/sem_getvalue.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/semaphore/sem_getvalue.c + * libc/semaphore/sem_getvalue.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/semaphore/sem_init.c b/libc/semaphore/sem_init.c index bc14415f97..7732eb57a5 100644 --- a/libc/semaphore/sem_init.c +++ b/libc/semaphore/sem_init.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/sem/sem_init.c + * libc/sem/sem_init.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/signal/Make.defs b/libc/signal/Make.defs index e27da9b2e8..fe7eb180e7 100644 --- a/libc/signal/Make.defs +++ b/libc/signal/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/signal/Make.defs +# libc/signal/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/signal/sig_addset.c b/libc/signal/sig_addset.c index 19ba0cb6b6..06ddabd6b2 100644 --- a/libc/signal/sig_addset.c +++ b/libc/signal/sig_addset.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/signal/sig_addset.c + * libc/signal/sig_addset.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/signal/sig_delset.c b/libc/signal/sig_delset.c index 1c661d37f6..04112d8729 100644 --- a/libc/signal/sig_delset.c +++ b/libc/signal/sig_delset.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/signal/sig_delset.c + * libc/signal/sig_delset.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/signal/sig_emptyset.c b/libc/signal/sig_emptyset.c index ac0c6b3e89..16ddd3f68f 100644 --- a/libc/signal/sig_emptyset.c +++ b/libc/signal/sig_emptyset.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/signal/sig_emptyset.c + * libc/signal/sig_emptyset.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/signal/sig_fillset.c b/libc/signal/sig_fillset.c index 8697d7577f..99ee95c1ff 100644 --- a/libc/signal/sig_fillset.c +++ b/libc/signal/sig_fillset.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/signal/sig_fillset.c + * libc/signal/sig_fillset.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/signal/sig_ismember.c b/libc/signal/sig_ismember.c index c5bb091b7b..1a8590e003 100644 --- a/libc/signal/sig_ismember.c +++ b/libc/signal/sig_ismember.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/signal/sig_ismember.c + * libc/signal/sig_ismember.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/Make.defs b/libc/stdio/Make.defs index e4ee5e9699..e18ab0220f 100644 --- a/libc/stdio/Make.defs +++ b/libc/stdio/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/stdio/Make.defs +# libc/stdio/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/stdio/lib_asprintf.c b/libc/stdio/lib_asprintf.c index 84aaafa462..20ca6de326 100644 --- a/libc/stdio/lib_asprintf.c +++ b/libc/stdio/lib_asprintf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_asprintf.c + * libc/stdio/lib_asprintf.c * * Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_avsprintf.c b/libc/stdio/lib_avsprintf.c index 8561b97c21..15ff8c9fbd 100644 --- a/libc/stdio/lib_avsprintf.c +++ b/libc/stdio/lib_avsprintf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_avsprintf.c + * libc/stdio/lib_avsprintf.c * * Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_clearerr.c b/libc/stdio/lib_clearerr.c index 7f7ded5bb4..589b56feb6 100644 --- a/libc/stdio/lib_clearerr.c +++ b/libc/stdio/lib_clearerr.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_clearerr.c + * libc/stdio/lib_clearerr.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_dtoa.c b/libc/stdio/lib_dtoa.c index b8c7db9803..44290ae328 100644 --- a/libc/stdio/lib_dtoa.c +++ b/libc/stdio/lib_dtoa.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_dtoa.c + * libc/stdio/lib_dtoa.c * * This file was ported to NuttX by Yolande Cates. * diff --git a/libc/stdio/lib_fclose.c b/libc/stdio/lib_fclose.c index 8cecb8af3c..c04537adf7 100644 --- a/libc/stdio/lib_fclose.c +++ b/libc/stdio/lib_fclose.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_fclose.c + * libc/stdio/lib_fclose.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_feof.c b/libc/stdio/lib_feof.c index e44c6a3c92..e036398fda 100644 --- a/libc/stdio/lib_feof.c +++ b/libc/stdio/lib_feof.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_feof.c + * libc/stdio/lib_feof.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_ferror.c b/libc/stdio/lib_ferror.c index 4ad7d8cfca..a977394cb1 100644 --- a/libc/stdio/lib_ferror.c +++ b/libc/stdio/lib_ferror.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_ferror.c + * libc/stdio/lib_ferror.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_fflush.c b/libc/stdio/lib_fflush.c index d0b5e0185d..a84a14a599 100644 --- a/libc/stdio/lib_fflush.c +++ b/libc/stdio/lib_fflush.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_fflush.c + * libc/stdio/lib_fflush.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_fgetc.c b/libc/stdio/lib_fgetc.c index 4b3d0ec44f..81e2e4ba72 100644 --- a/libc/stdio/lib_fgetc.c +++ b/libc/stdio/lib_fgetc.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_fgetc.c + * libc/stdio/lib_fgetc.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_fgetpos.c b/libc/stdio/lib_fgetpos.c index e9e9f4d102..7663ca2dbe 100644 --- a/libc/stdio/lib_fgetpos.c +++ b/libc/stdio/lib_fgetpos.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_fgetpos.c + * libc/stdio/lib_fgetpos.c * * Copyright (C) 2008-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_fgets.c b/libc/stdio/lib_fgets.c index a4f9089ed7..c2c98a38b6 100644 --- a/libc/stdio/lib_fgets.c +++ b/libc/stdio/lib_fgets.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_fgets.c + * libc/stdio/lib_fgets.c * * Copyright (C) 2007-2008, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_fileno.c b/libc/stdio/lib_fileno.c index fca08fc0d4..f227aa372b 100644 --- a/libc/stdio/lib_fileno.c +++ b/libc/stdio/lib_fileno.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_fileno.c + * libc/stdio/lib_fileno.c * * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_fopen.c b/libc/stdio/lib_fopen.c index 29ff4569c2..cb68b35843 100644 --- a/libc/stdio/lib_fopen.c +++ b/libc/stdio/lib_fopen.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_fopen.c + * libc/stdio/lib_fopen.c * * Copyright (C) 2007-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_fprintf.c b/libc/stdio/lib_fprintf.c index a803de4bd0..5b6fe58f42 100644 --- a/libc/stdio/lib_fprintf.c +++ b/libc/stdio/lib_fprintf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_fprintf.c + * libc/stdio/lib_fprintf.c * * Copyright (C) 2007, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_fputc.c b/libc/stdio/lib_fputc.c index 121161f102..5d8065b431 100644 --- a/libc/stdio/lib_fputc.c +++ b/libc/stdio/lib_fputc.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_fputc.c + * libc/stdio/lib_fputc.c * * Copyright (C) 2007, 2008, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_fputs.c b/libc/stdio/lib_fputs.c index 2d6217d4aa..7b87a89d00 100644 --- a/libc/stdio/lib_fputs.c +++ b/libc/stdio/lib_fputs.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_fputs.c + * libc/stdio/lib_fputs.c * * Copyright (C) 2007, 2008, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_fread.c b/libc/stdio/lib_fread.c index 4a4b29256d..6717141225 100644 --- a/libc/stdio/lib_fread.c +++ b/libc/stdio/lib_fread.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_fread.c + * libc/stdio/lib_fread.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_fseek.c b/libc/stdio/lib_fseek.c index 7380f83b3b..36216d94a9 100644 --- a/libc/stdio/lib_fseek.c +++ b/libc/stdio/lib_fseek.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_fseek.c + * libc/stdio/lib_fseek.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_fsetpos.c b/libc/stdio/lib_fsetpos.c index 13d556521b..3d79a18775 100644 --- a/libc/stdio/lib_fsetpos.c +++ b/libc/stdio/lib_fsetpos.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_fsetpos.c + * libc/stdio/lib_fsetpos.c * * Copyright (C) 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_ftell.c b/libc/stdio/lib_ftell.c index 9476481529..99fc20f340 100644 --- a/libc/stdio/lib_ftell.c +++ b/libc/stdio/lib_ftell.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_ftell.c + * libc/stdio/lib_ftell.c * * Copyright (C) 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_fwrite.c b/libc/stdio/lib_fwrite.c index 60e0017463..e8de004feb 100644 --- a/libc/stdio/lib_fwrite.c +++ b/libc/stdio/lib_fwrite.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_fwrite.c + * libc/stdio/lib_fwrite.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_gets.c b/libc/stdio/lib_gets.c index 95a6b36ebf..39c31d273d 100644 --- a/libc/stdio/lib_gets.c +++ b/libc/stdio/lib_gets.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_gets.c + * libc/stdio/lib_gets.c * * Copyright (C) 2007-2008, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_libdtoa.c b/libc/stdio/lib_libdtoa.c index 667c49c535..29f61fd76e 100644 --- a/libc/stdio/lib_libdtoa.c +++ b/libc/stdio/lib_libdtoa.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/unistd/lib_libdtoa.c + * libc/unistd/lib_libdtoa.c * * This file was ported to NuttX by Yolande Cates. * diff --git a/libc/stdio/lib_libfflush.c b/libc/stdio/lib_libfflush.c index 2a4fe29326..f2f0cfe144 100644 --- a/libc/stdio/lib_libfflush.c +++ b/libc/stdio/lib_libfflush.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_libfflush.c + * libc/stdio/lib_libfflush.c * * Copyright (C) 2007-2008, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_libflushall.c b/libc/stdio/lib_libflushall.c index 9d0a89e9c1..7ac3da7e0e 100644 --- a/libc/stdio/lib_libflushall.c +++ b/libc/stdio/lib_libflushall.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_libflushall.c + * libc/stdio/lib_libflushall.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_libfread.c b/libc/stdio/lib_libfread.c index 5585acbaea..bc6479037d 100644 --- a/libc/stdio/lib_libfread.c +++ b/libc/stdio/lib_libfread.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_libfread.c + * libc/stdio/lib_libfread.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_libfwrite.c b/libc/stdio/lib_libfwrite.c index e71866b498..b917b3b564 100644 --- a/libc/stdio/lib_libfwrite.c +++ b/libc/stdio/lib_libfwrite.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_libfwrite.c + * libc/stdio/lib_libfwrite.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_libnoflush.c b/libc/stdio/lib_libnoflush.c index e3b8911534..076f8a17e6 100644 --- a/libc/stdio/lib_libnoflush.c +++ b/libc/stdio/lib_libnoflush.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_libnoflush.c + * libc/stdio/lib_libnoflush.c * * Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_libsprintf.c b/libc/stdio/lib_libsprintf.c index 2474a6f01d..2d820ab37b 100644 --- a/libc/stdio/lib_libsprintf.c +++ b/libc/stdio/lib_libsprintf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_libsprintf.c + * libc/stdio/lib_libsprintf.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_libvsprintf.c b/libc/stdio/lib_libvsprintf.c index 30c988599c..9a391610dc 100644 --- a/libc/stdio/lib_libvsprintf.c +++ b/libc/stdio/lib_libvsprintf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_libvsprintf.c + * libc/stdio/lib_libvsprintf.c * * Copyright (C) 2007-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt @@ -1161,7 +1161,7 @@ static void postjustify(FAR struct lib_outstream_s *obj, uint8_t fmt, ****************************************************************************/ /**************************************************************************** - * lib/stdio/lib_vsprintf + * libc/stdio/lib_vsprintf ****************************************************************************/ int lib_vsprintf(FAR struct lib_outstream_s *obj, FAR const char *src, va_list ap) diff --git a/libc/stdio/lib_lowinstream.c b/libc/stdio/lib_lowinstream.c index 499a647ea2..7284601e8e 100644 --- a/libc/stdio/lib_lowinstream.c +++ b/libc/stdio/lib_lowinstream.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_lowinstream.c + * libc/stdio/lib_lowinstream.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_lowoutstream.c b/libc/stdio/lib_lowoutstream.c index 092f39ca25..f600bc614a 100644 --- a/libc/stdio/lib_lowoutstream.c +++ b/libc/stdio/lib_lowoutstream.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_lowoutstream.c + * libc/stdio/lib_lowoutstream.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_lowprintf.c b/libc/stdio/lib_lowprintf.c index 392ef2c6a8..f7d4ffe2fe 100644 --- a/libc/stdio/lib_lowprintf.c +++ b/libc/stdio/lib_lowprintf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_lowprintf.c + * libc/stdio/lib_lowprintf.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_meminstream.c b/libc/stdio/lib_meminstream.c index a842096fb4..2a30d956d6 100644 --- a/libc/stdio/lib_meminstream.c +++ b/libc/stdio/lib_meminstream.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_meminstream.c + * libc/stdio/lib_meminstream.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_memoutstream.c b/libc/stdio/lib_memoutstream.c index 21197358b7..efd527cbc5 100644 --- a/libc/stdio/lib_memoutstream.c +++ b/libc/stdio/lib_memoutstream.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_memoutstream.c + * libc/stdio/lib_memoutstream.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_nullinstream.c b/libc/stdio/lib_nullinstream.c index 0eadb0a8e4..aeb0af3790 100644 --- a/libc/stdio/lib_nullinstream.c +++ b/libc/stdio/lib_nullinstream.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_nullinstream.c + * libc/stdio/lib_nullinstream.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_nulloutstream.c b/libc/stdio/lib_nulloutstream.c index 69878fd579..5742953448 100644 --- a/libc/stdio/lib_nulloutstream.c +++ b/libc/stdio/lib_nulloutstream.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_nulloutstream.c + * libc/stdio/lib_nulloutstream.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_perror.c b/libc/stdio/lib_perror.c index 867e113f98..1818983292 100644 --- a/libc/stdio/lib_perror.c +++ b/libc/stdio/lib_perror.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_perror.c + * libc/stdio/lib_perror.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_printf.c b/libc/stdio/lib_printf.c index 50db06c475..0e90c7ca5a 100644 --- a/libc/stdio/lib_printf.c +++ b/libc/stdio/lib_printf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_printf.c + * libc/stdio/lib_printf.c * * Copyright (C) 2007-2008, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_puts.c b/libc/stdio/lib_puts.c index e63a63917f..53eda7081e 100644 --- a/libc/stdio/lib_puts.c +++ b/libc/stdio/lib_puts.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_puts.c + * libc/stdio/lib_puts.c * * Copyright (C) 2007, 2008, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_rawinstream.c b/libc/stdio/lib_rawinstream.c index 9671a27166..55456769eb 100644 --- a/libc/stdio/lib_rawinstream.c +++ b/libc/stdio/lib_rawinstream.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_rawinstream.c + * libc/stdio/lib_rawinstream.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_rawoutstream.c b/libc/stdio/lib_rawoutstream.c index ed813f87aa..e1fe371346 100644 --- a/libc/stdio/lib_rawoutstream.c +++ b/libc/stdio/lib_rawoutstream.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_rawoutstream.c + * libc/stdio/lib_rawoutstream.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_rawprintf.c b/libc/stdio/lib_rawprintf.c index 19dfa895e1..98bbbea053 100644 --- a/libc/stdio/lib_rawprintf.c +++ b/libc/stdio/lib_rawprintf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_rawprintf.c + * libc/stdio/lib_rawprintf.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_rdflush.c b/libc/stdio/lib_rdflush.c index 35c5495c17..c6136792bb 100644 --- a/libc/stdio/lib_rdflush.c +++ b/libc/stdio/lib_rdflush.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_rdflush.c + * libc/stdio/lib_rdflush.c * * Copyright (C) 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_snprintf.c b/libc/stdio/lib_snprintf.c index e5ce7b0f02..a4ba0dbb30 100644 --- a/libc/stdio/lib_snprintf.c +++ b/libc/stdio/lib_snprintf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_snprintf.c + * libc/stdio/lib_snprintf.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_sprintf.c b/libc/stdio/lib_sprintf.c index 89fd610330..deb0669a3b 100644 --- a/libc/stdio/lib_sprintf.c +++ b/libc/stdio/lib_sprintf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_sprintf.c + * libc/stdio/lib_sprintf.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_sscanf.c b/libc/stdio/lib_sscanf.c index 7e1fae276d..77a6cf212f 100644 --- a/libc/stdio/lib_sscanf.c +++ b/libc/stdio/lib_sscanf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_sscanf.c + * libc/stdio/lib_sscanf.c * * Copyright (C) 2007, 2008, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_stdinstream.c b/libc/stdio/lib_stdinstream.c index 77aab9ec88..261b266346 100644 --- a/libc/stdio/lib_stdinstream.c +++ b/libc/stdio/lib_stdinstream.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_stdinstream.c + * libc/stdio/lib_stdinstream.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_stdoutstream.c b/libc/stdio/lib_stdoutstream.c index 20da5b7026..dfe67271f1 100644 --- a/libc/stdio/lib_stdoutstream.c +++ b/libc/stdio/lib_stdoutstream.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_stdoutstream.c + * libc/stdio/lib_stdoutstream.c * * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_syslogstream.c b/libc/stdio/lib_syslogstream.c index 21151b43a1..5529c5de8c 100644 --- a/libc/stdio/lib_syslogstream.c +++ b/libc/stdio/lib_syslogstream.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_syslogstream.c + * libc/stdio/lib_syslogstream.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_ungetc.c b/libc/stdio/lib_ungetc.c index c10d4fba1a..178aeddd10 100644 --- a/libc/stdio/lib_ungetc.c +++ b/libc/stdio/lib_ungetc.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_ungetc.c + * libc/stdio/lib_ungetc.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_vfprintf.c b/libc/stdio/lib_vfprintf.c index 1c3a2d7fc9..cd117ddc30 100644 --- a/libc/stdio/lib_vfprintf.c +++ b/libc/stdio/lib_vfprintf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_vfprintf.c + * libc/stdio/lib_vfprintf.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_vprintf.c b/libc/stdio/lib_vprintf.c index d085d58869..6ddfe2b246 100644 --- a/libc/stdio/lib_vprintf.c +++ b/libc/stdio/lib_vprintf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_vprintf.c + * libc/stdio/lib_vprintf.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_vsnprintf.c b/libc/stdio/lib_vsnprintf.c index c6f52092d1..f7fd02e427 100644 --- a/libc/stdio/lib_vsnprintf.c +++ b/libc/stdio/lib_vsnprintf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_vsnprintf.c + * libc/stdio/lib_vsnprintf.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_vsprintf.c b/libc/stdio/lib_vsprintf.c index 5db46664e3..b6d80808f9 100644 --- a/libc/stdio/lib_vsprintf.c +++ b/libc/stdio/lib_vsprintf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_vsprintf.c + * libc/stdio/lib_vsprintf.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt @@ -84,7 +84,7 @@ int vsprintf(FAR char *dest, const char *src, va_list ap) struct lib_memoutstream_s memoutstream; /* Wrap the destination buffer in a stream object and let - * lib/stdio/lib_vsprintf do the work. + * libc/stdio/lib_vsprintf do the work. */ lib_memoutstream((FAR struct lib_memoutstream_s *)&memoutstream, dest, LIB_BUFLEN_UNKNOWN); diff --git a/libc/stdio/lib_wrflush.c b/libc/stdio/lib_wrflush.c index 39680da6ae..40b8e38c8d 100644 --- a/libc/stdio/lib_wrflush.c +++ b/libc/stdio/lib_wrflush.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_wrflush.c + * libc/stdio/lib_wrflush.c * * Copyright (C) 2008-2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdio/lib_zeroinstream.c b/libc/stdio/lib_zeroinstream.c index 39a6c22ef3..a52ecc1d06 100644 --- a/libc/stdio/lib_zeroinstream.c +++ b/libc/stdio/lib_zeroinstream.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdio/lib_zeroinstream.c + * libc/stdio/lib_zeroinstream.c * * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdlib/Make.defs b/libc/stdlib/Make.defs index 76e285808a..dcc4dab26a 100644 --- a/libc/stdlib/Make.defs +++ b/libc/stdlib/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/stdlib/Make.defs +# libc/stdlib/Make.defs # # Copyright (C) 2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/stdlib/lib_abort.c b/libc/stdlib/lib_abort.c index 84b6009500..1c7442c7f5 100644 --- a/libc/stdlib/lib_abort.c +++ b/libc/stdlib/lib_abort.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/stdlib/lib_abort.c + * libc/stdlib/lib_abort.c * * Copyright (C) 2007, 2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdlib/lib_abs.c b/libc/stdlib/lib_abs.c index 1a0c1671cc..a4e4ec6694 100644 --- a/libc/stdlib/lib_abs.c +++ b/libc/stdlib/lib_abs.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/stdlib/lib_abs.c + * libc/stdlib/lib_abs.c * * Copyright (C) 2010-2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdlib/lib_imaxabs.c b/libc/stdlib/lib_imaxabs.c index c6e227c7de..d365043727 100644 --- a/libc/stdlib/lib_imaxabs.c +++ b/libc/stdlib/lib_imaxabs.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/stdlib//lib_abs.c + * libc/stdlib//lib_abs.c * * Copyright (C) 2010-2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdlib/lib_labs.c b/libc/stdlib/lib_labs.c index f7218ee833..7cf92a0a19 100644 --- a/libc/stdlib/lib_labs.c +++ b/libc/stdlib/lib_labs.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/stdlib/lib_labs.c + * libc/stdlib/lib_labs.c * * Copyright (C) 2010-2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdlib/lib_llabs.c b/libc/stdlib/lib_llabs.c index db7d3dbe07..3630d1716f 100644 --- a/libc/stdlib/lib_llabs.c +++ b/libc/stdlib/lib_llabs.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/stdlib/lib_llabs.c + * libc/stdlib/lib_llabs.c * * Copyright (C) 2010-2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdlib/lib_qsort.c b/libc/stdlib/lib_qsort.c index 9dd5c00409..021e782d40 100644 --- a/libc/stdlib/lib_qsort.c +++ b/libc/stdlib/lib_qsort.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/stdlib/lib_qsort.c + * libc/stdlib/lib_qsort.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/stdlib/lib_rand.c b/libc/stdlib/lib_rand.c index 7227c52d0d..cb998fb12e 100644 --- a/libc/stdlib/lib_rand.c +++ b/libc/stdlib/lib_rand.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/stdlib/lib_rand.c + * libc/stdlib/lib_rand.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/Make.defs b/libc/string/Make.defs index 191b9ffea5..311c8afd27 100644 --- a/libc/string/Make.defs +++ b/libc/string/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/string/Make.defs +# libc/string/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/string/lib_checkbase.c b/libc/string/lib_checkbase.c index bc79ab2cec..32ae58dca3 100644 --- a/libc/string/lib_checkbase.c +++ b/libc/string/lib_checkbase.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_checkbase.c + * libc/string/lib_checkbase.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_isbasedigit.c b/libc/string/lib_isbasedigit.c index a2421bf2a4..dff8138811 100644 --- a/libc/string/lib_isbasedigit.c +++ b/libc/string/lib_isbasedigit.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_isbasedigit.c + * libc/string/lib_isbasedigit.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_memccpy.c b/libc/string/lib_memccpy.c index 1f3dbb52dd..1d77f58fe9 100644 --- a/libc/string/lib_memccpy.c +++ b/libc/string/lib_memccpy.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_memccpy.c + * libc/string/lib_memccpy.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_memchr.c b/libc/string/lib_memchr.c index e0dec82700..0ac6091042 100644 --- a/libc/string/lib_memchr.c +++ b/libc/string/lib_memchr.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_memchr.c + * libc/string/lib_memchr.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_memcmp.c b/libc/string/lib_memcmp.c index eb2e1fd125..e1722a4d8d 100644 --- a/libc/string/lib_memcmp.c +++ b/libc/string/lib_memcmp.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/string/lib_memcmp.c + * libc/string/lib_memcmp.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_memcpy.c b/libc/string/lib_memcpy.c index 3b62edbabd..2ebd5beee1 100644 --- a/libc/string/lib_memcpy.c +++ b/libc/string/lib_memcpy.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_memcpy.c + * libc/string/lib_memcpy.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_memmove.c b/libc/string/lib_memmove.c index 85cb79e174..cbc26fb26f 100644 --- a/libc/string/lib_memmove.c +++ b/libc/string/lib_memmove.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/string/lib_memmove.c + * libc/string/lib_memmove.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_memset.c b/libc/string/lib_memset.c index 31c386e928..0b98ebf96f 100644 --- a/libc/string/lib_memset.c +++ b/libc/string/lib_memset.c @@ -1,6 +1,6 @@ /**************************************************************************** - * lib/string/lib_memset.c + * libc/string/lib_memset.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_skipspace.c b/libc/string/lib_skipspace.c index b4e6588e59..4b72b1ec37 100644 --- a/libc/string/lib_skipspace.c +++ b/libc/string/lib_skipspace.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_skipspace.c + * libc/string/lib_skipspace.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strcasecmp.c b/libc/string/lib_strcasecmp.c index d4aa8cc031..df6f08118d 100644 --- a/libc/string/lib_strcasecmp.c +++ b/libc/string/lib_strcasecmp.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strcasecmp.c + * libc/string/lib_strcasecmp.c * * Copyright (C) 2008-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strcasestr.c b/libc/string/lib_strcasestr.c index 23f0ab57e6..5a8d53beef 100644 --- a/libc/string/lib_strcasestr.c +++ b/libc/string/lib_strcasestr.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strstr.c + * libc/string/lib_strstr.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strcat.c b/libc/string/lib_strcat.c index 20350fec07..b331d3f1c1 100644 --- a/libc/string/lib_strcat.c +++ b/libc/string/lib_strcat.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strcat.c + * libc/string/lib_strcat.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strchr.c b/libc/string/lib_strchr.c index d0bd22a0ea..e6af56eee5 100644 --- a/libc/string/lib_strchr.c +++ b/libc/string/lib_strchr.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strchr.c + * libc/string/lib_strchr.c * * Copyright (C) 2007, 2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strcmp.c b/libc/string/lib_strcmp.c index 0e3eee8900..d4036cd3ea 100644 --- a/libc/string/lib_strcmp.c +++ b/libc/string/lib_strcmp.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strcmp.c + * libc/string/lib_strcmp.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strcpy.c b/libc/string/lib_strcpy.c index e2f70b94e3..7a0576f5af 100644 --- a/libc/string/lib_strcpy.c +++ b/libc/string/lib_strcpy.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/string/lib_strcpy.c + * libc/string/lib_strcpy.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strcspn.c b/libc/string/lib_strcspn.c index 9da89241c5..23e913fadf 100644 --- a/libc/string/lib_strcspn.c +++ b/libc/string/lib_strcspn.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strcspn.c + * libc/string/lib_strcspn.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strdup.c b/libc/string/lib_strdup.c index 44a0cbc0d8..a5b3a1e8c1 100644 --- a/libc/string/lib_strdup.c +++ b/libc/string/lib_strdup.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/string//lib_strdup.c + * libc/string//lib_strdup.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strerror.c b/libc/string/lib_strerror.c index 249f695c1b..0c7ca28fd8 100644 --- a/libc/string/lib_strerror.c +++ b/libc/string/lib_strerror.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/string/lib_strerror.c + * libc/string/lib_strerror.c * * Copyright (C) 2007, 2009, 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strlen.c b/libc/string/lib_strlen.c index 8333058091..6077858e23 100644 --- a/libc/string/lib_strlen.c +++ b/libc/string/lib_strlen.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strlen.c + * libc/string/lib_strlen.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strncasecmp.c b/libc/string/lib_strncasecmp.c index be369cf0d8..35f701c5ef 100644 --- a/libc/string/lib_strncasecmp.c +++ b/libc/string/lib_strncasecmp.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strncasecmp.c + * libc/string/lib_strncasecmp.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strncat.c b/libc/string/lib_strncat.c index af893e0f9b..78c54835e0 100644 --- a/libc/string/lib_strncat.c +++ b/libc/string/lib_strncat.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/string/lib_strncat.c + * libc/string/lib_strncat.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strncmp.c b/libc/string/lib_strncmp.c index ce22820249..dd8b57fd0b 100644 --- a/libc/string/lib_strncmp.c +++ b/libc/string/lib_strncmp.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/lib_strncmp.c + * libc/lib_strncmp.c * * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strncpy.c b/libc/string/lib_strncpy.c index 149369d508..8a97aa67b7 100644 --- a/libc/string/lib_strncpy.c +++ b/libc/string/lib_strncpy.c @@ -1,5 +1,5 @@ /************************************************************ - * lib/string/lib_strncpy.c + * libc/string/lib_strncpy.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strndup.c b/libc/string/lib_strndup.c index ffaf892eaa..524e09754e 100644 --- a/libc/string/lib_strndup.c +++ b/libc/string/lib_strndup.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/string//lib_strndup.c + * libc/string//lib_strndup.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strnlen.c b/libc/string/lib_strnlen.c index 2b64fe9845..9bc3064cb1 100644 --- a/libc/string/lib_strnlen.c +++ b/libc/string/lib_strnlen.c @@ -1,12 +1,12 @@ /**************************************************************************** - * lib/string/lib_strnlen.c + * libc/string/lib_strnlen.c * * This file is part of NuttX, contributed by Michael Hrabanek * * Copyright (C) 2010 Gregory Nutt. All rights reserved. * Author: Michael Hrabanek * - * Derives from the file lib/lib_strlen.c: + * Derives from the file libc/lib_strlen.c: * * Copyright (C) 2007, 2008, 2010 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strpbrk.c b/libc/string/lib_strpbrk.c index 02e2ea2c70..ef9b0f3e97 100644 --- a/libc/string/lib_strpbrk.c +++ b/libc/string/lib_strpbrk.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strpbrk.c + * libc/string/lib_strpbrk.c * * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strrchr.c b/libc/string/lib_strrchr.c index 91243ce589..08575c82bf 100644 --- a/libc/string/lib_strrchr.c +++ b/libc/string/lib_strrchr.c @@ -1,5 +1,5 @@ /************************************************************************ - * lib/string/lib_strrchr.c + * libc/string/lib_strrchr.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strspn.c b/libc/string/lib_strspn.c index e7b5ea0a5b..6894b2b9dc 100644 --- a/libc/string/lib_strspn.c +++ b/libc/string/lib_strspn.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strspn.c + * libc/string/lib_strspn.c * * Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strstr.c b/libc/string/lib_strstr.c index b8c896fa2e..02f4809d2b 100644 --- a/libc/string/lib_strstr.c +++ b/libc/string/lib_strstr.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strstr.c + * libc/string/lib_strstr.c * * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strtod.c b/libc/string/lib_strtod.c index 8fecd45713..58dfd6a292 100644 --- a/libc/string/lib_strtod.c +++ b/libc/string/lib_strtod.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strtod.c + * libc/string/lib_strtod.c * Convert string to double * * Copyright (C) 2002 Michael Ringgaard. All rights reserved. diff --git a/libc/string/lib_strtok.c b/libc/string/lib_strtok.c index c409931359..85d6597d74 100644 --- a/libc/string/lib_strtok.c +++ b/libc/string/lib_strtok.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strtok.c + * libc/string/lib_strtok.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strtokr.c b/libc/string/lib_strtokr.c index 1c571b6ae5..c7845be642 100644 --- a/libc/string/lib_strtokr.c +++ b/libc/string/lib_strtokr.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strtokr.c + * libc/string/lib_strtokr.c * * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strtol.c b/libc/string/lib_strtol.c index c17d87e635..6ac0d6827d 100644 --- a/libc/string/lib_strtol.c +++ b/libc/string/lib_strtol.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strtol.c + * libc/string/lib_strtol.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strtoll.c b/libc/string/lib_strtoll.c index 242e025c07..99fba08eba 100644 --- a/libc/string/lib_strtoll.c +++ b/libc/string/lib_strtoll.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/string/lib_strtoll.c + * libc/string/lib_strtoll.c * * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strtoul.c b/libc/string/lib_strtoul.c index b0d2d090e6..8f27ae3f2d 100644 --- a/libc/string/lib_strtoul.c +++ b/libc/string/lib_strtoul.c @@ -1,5 +1,5 @@ /**************************************************************************** - * /lib/string/lib_strtoul.c + * /libc/string/lib_strtoul.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_strtoull.c b/libc/string/lib_strtoull.c index 6567457c0e..4808114afe 100644 --- a/libc/string/lib_strtoull.c +++ b/libc/string/lib_strtoull.c @@ -1,5 +1,5 @@ /**************************************************************************** - * /lib/string/lib_strtoull.c + * /libc/string/lib_strtoull.c * * Copyright (C) 2009, 2010 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/string/lib_vikmemcpy.c b/libc/string/lib_vikmemcpy.c index b50942aaa1..28bf4a4ced 100644 --- a/libc/string/lib_vikmemcpy.c +++ b/libc/string/lib_vikmemcpy.c @@ -1,348 +1,348 @@ -/**************************************************************************** - * File: lib/string/lib_vikmemcpy.c - * - * This is version of the optimized memcpy by Daniel Vik, adapted to the - * NuttX environment. - * - * Copyright (C) 1999-2010 Daniel Vik - * - * Adaptations include: - * - File name change - * - Use of types defined in stdint.h - * - Integration with the NuttX configuration system - * - Other cosmetic changes for consistency with NuttX coding standards - * - * This software is provided 'as-is', without any express or implied - * warranty. In no event will the authors be held liable for any - * damages arising from the use of this software. - * Permission is granted to anyone to use this software for any - * purpose, including commercial applications, and to alter it and - * redistribute it freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you - * must not claim that you wrote the original software. If you - * use this software in a product, an acknowledgment in the - * use this software in a product, an acknowledgment in the - * product documentation would be appreciated but is not - * required. - * - * 2. Altered source versions must be plainly marked as such, and - * must not be misrepresented as being the original software. - * - * 3. This notice may not be removed or altered from any source - * distribution. - * - * Description: Implementation of the standard library function memcpy. - * This implementation of memcpy() is ANSI-C89 compatible. - * - * The following configuration options can be set: - * - * CONFIG_ENDIAN_BIG - * Uses processor with big endian addressing. Default is little endian. - * - * CONFIG_MEMCPY_PRE_INC_PTRS - * Use pre increment of pointers. Default is post increment of pointers. - * - * CONFIG_MEMCPY_INDEXED_COPY - * Copying data using array indexing. Using this option, disables the - * CONFIG_MEMCPY_PRE_INC_PTRS option. - * - * CONFIG_MEMCPY_64BIT - Compiles memcpy for 64 bit architectures - * - ****************************************************************************/ - -/**************************************************************************** - * Configuration definitions. - ****************************************************************************/ - -#define CONFIG_MEMCPY_INDEXED_COPY - -/******************************************************************** - * Included Files - *******************************************************************/ - -#include -#include - -#include -#include -#include - -/******************************************************************** - * Pre-processor Definitions - *******************************************************************/ - -/* Can't support CONFIG_MEMCPY_64BIT if the platform does not have 64-bit - * integer types. - */ - -#ifndef CONFIG_HAVE_LONG_LONG -# undef CONFIG_MEMCPY_64BIT -#endif - -/* Remove definitions when CONFIG_MEMCPY_INDEXED_COPY is defined */ - -#if defined (CONFIG_MEMCPY_INDEXED_COPY) -# if defined (CONFIG_MEMCPY_PRE_INC_PTRS) -# undef CONFIG_MEMCPY_PRE_INC_PTRS -# endif /* CONFIG_MEMCPY_PRE_INC_PTRS */ -#endif /* CONFIG_MEMCPY_INDEXED_COPY */ - -/* Definitions for pre and post increment of pointers */ - -#if defined (CONFIG_MEMCPY_PRE_INC_PTRS) - -# define START_VAL(x) (x)-- -# define INC_VAL(x) *++(x) -# define CAST_TO_U8(p, o) ((uint8_t*)p + o + TYPE_WIDTH) -# define WHILE_DEST_BREAK (TYPE_WIDTH - 1) -# define PRE_LOOP_ADJUST - (TYPE_WIDTH - 1) -# define PRE_SWITCH_ADJUST + 1 - -#else /* CONFIG_MEMCPY_PRE_INC_PTRS */ - -# define START_VAL(x) -# define INC_VAL(x) *(x)++ -# define CAST_TO_U8(p, o) ((uint8_t*)p + o) -# define WHILE_DEST_BREAK 0 -# define PRE_LOOP_ADJUST -# define PRE_SWITCH_ADJUST - -#endif /* CONFIG_MEMCPY_PRE_INC_PTRS */ - -/* Definitions for endian-ness */ - -#ifdef CONFIG_ENDIAN_BIG - -# define SHL << -# define SHR >> - -#else /* CONFIG_ENDIAN_BIG */ - -# define SHL >> -# define SHR << - -#endif /* CONFIG_ENDIAN_BIG */ - -/******************************************************************** - * Macros for copying words of different alignment. - * Uses incremening pointers. - *******************************************************************/ - -#define CP_INCR() \ -{ \ - INC_VAL(dstN) = INC_VAL(srcN); \ -} - -#define CP_INCR_SH(shl, shr) \ -{ \ - dstWord = srcWord SHL shl; \ - srcWord = INC_VAL(srcN); \ - dstWord |= srcWord SHR shr; \ - INC_VAL(dstN) = dstWord; \ -} - -/******************************************************************** - * Macros for copying words of different alignment. - * Uses array indexes. - *******************************************************************/ - -#define CP_INDEX(idx) \ -{ \ - dstN[idx] = srcN[idx]; \ -} - -#define CP_INDEX_SH(x, shl, shr) \ -{ \ - dstWord = srcWord SHL shl; \ - srcWord = srcN[x]; \ - dstWord |= srcWord SHR shr; \ - dstN[x] = dstWord; \ -} - -/******************************************************************** - * Macros for copying words of different alignment. - * Uses incremening pointers or array indexes depending on - * configuration. - *******************************************************************/ - -#if defined (CONFIG_MEMCPY_INDEXED_COPY) - -# define CP(idx) CP_INDEX(idx) -# define CP_SH(idx, shl, shr) CP_INDEX_SH(idx, shl, shr) - -# define INC_INDEX(p, o) ((p) += (o)) - -#else /* CONFIG_MEMCPY_INDEXED_COPY */ - -# define CP(idx) CP_INCR() -# define CP_SH(idx, shl, shr) CP_INCR_SH(shl, shr) - -# define INC_INDEX(p, o) - -#endif /* CONFIG_MEMCPY_INDEXED_COPY */ - -#define COPY_REMAINING(count) \ -{ \ - START_VAL(dst8); \ - START_VAL(src8); \ - \ - switch (count) \ - { \ - case 7: INC_VAL(dst8) = INC_VAL(src8); \ - case 6: INC_VAL(dst8) = INC_VAL(src8); \ - case 5: INC_VAL(dst8) = INC_VAL(src8); \ - case 4: INC_VAL(dst8) = INC_VAL(src8); \ - case 3: INC_VAL(dst8) = INC_VAL(src8); \ - case 2: INC_VAL(dst8) = INC_VAL(src8); \ - case 1: INC_VAL(dst8) = INC_VAL(src8); \ - case 0: \ - default: break; \ - } \ -} - -#define COPY_NO_SHIFT() \ -{ \ - UIntN* dstN = (UIntN*)(dst8 PRE_LOOP_ADJUST); \ - UIntN* srcN = (UIntN*)(src8 PRE_LOOP_ADJUST); \ - size_t length = count / TYPE_WIDTH; \ - \ - while (length & 7) \ - { \ - CP_INCR(); \ - length--; \ - } \ - \ - length /= 8; \ - \ - while (length--) \ - { \ - CP(0); \ - CP(1); \ - CP(2); \ - CP(3); \ - CP(4); \ - CP(5); \ - CP(6); \ - CP(7); \ - \ - INC_INDEX(dstN, 8); \ - INC_INDEX(srcN, 8); \ - } \ - \ - src8 = CAST_TO_U8(srcN, 0); \ - dst8 = CAST_TO_U8(dstN, 0); \ - \ - COPY_REMAINING(count & (TYPE_WIDTH - 1)); \ - \ - return dest; \ -} - -#define COPY_SHIFT(shift) \ -{ \ - UIntN* dstN = (UIntN*)((((UIntN)dst8) PRE_LOOP_ADJUST) & \ - ~(TYPE_WIDTH - 1)); \ - UIntN* srcN = (UIntN*)((((UIntN)src8) PRE_LOOP_ADJUST) & \ - ~(TYPE_WIDTH - 1)); \ - size_t length = count / TYPE_WIDTH; \ - UIntN srcWord = INC_VAL(srcN); \ - UIntN dstWord; \ - \ - while (length & 7) \ - { \ - CP_INCR_SH(8 * shift, 8 * (TYPE_WIDTH - shift)); \ - length--; \ - } \ - \ - length /= 8; \ - \ - while (length--) \ - { \ - CP_SH(0, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ - CP_SH(1, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ - CP_SH(2, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ - CP_SH(3, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ - CP_SH(4, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ - CP_SH(5, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ - CP_SH(6, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ - CP_SH(7, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ - \ - INC_INDEX(dstN, 8); \ - INC_INDEX(srcN, 8); \ - } \ - \ - src8 = CAST_TO_U8(srcN, (shift - TYPE_WIDTH)); \ - dst8 = CAST_TO_U8(dstN, 0); \ - \ - COPY_REMAINING(count & (TYPE_WIDTH - 1)); \ - \ - return dest; \ -} - -/******************************************************************** - * Type Definitions - *******************************************************************/ - -#ifdef CONFIG_MEMCPY_64BIT -typedef uint64_t UIntN; -# define TYPE_WIDTH 8L -#else -typedef uint32_t UIntN; -# define TYPE_WIDTH 4L -#endif - -/******************************************************************** - * Public Functions - *******************************************************************/ -/******************************************************************** - * Name: memcpy - * - * Description: - * Copies count bytes from src to dest. No overlap check is performed. - * - * Input Parameters: - * dest - pointer to destination buffer - * src - pointer to source buffer - * count - number of bytes to copy - * - * Returned Value: - * A pointer to destination buffer - * - *******************************************************************/ - -void *memcpy(void *dest, const void *src, size_t count) -{ - uint8_t *dst8 = (uint8_t*)dest; - uint8_t *src8 = (uint8_t*)src; - - if (count < 8) - { - COPY_REMAINING(count); - return dest; - } - - START_VAL(dst8); - START_VAL(src8); - - while (((UIntN)dst8 & (TYPE_WIDTH - 1)) != WHILE_DEST_BREAK) - { - INC_VAL(dst8) = INC_VAL(src8); - count--; - } - - switch ((((UIntN)src8) PRE_SWITCH_ADJUST) & (TYPE_WIDTH - 1)) - { - case 0: COPY_NO_SHIFT(); break; - case 1: COPY_SHIFT(1); break; - case 2: COPY_SHIFT(2); break; - case 3: COPY_SHIFT(3); break; -#if TYPE_WIDTH > 4 - case 4: COPY_SHIFT(4); break; - case 5: COPY_SHIFT(5); break; - case 6: COPY_SHIFT(6); break; - case 7: COPY_SHIFT(7); break; -#endif - } - - return dest; -} +/**************************************************************************** + * File: libc/string/lib_vikmemcpy.c + * + * This is version of the optimized memcpy by Daniel Vik, adapted to the + * NuttX environment. + * + * Copyright (C) 1999-2010 Daniel Vik + * + * Adaptations include: + * - File name change + * - Use of types defined in stdint.h + * - Integration with the NuttX configuration system + * - Other cosmetic changes for consistency with NuttX coding standards + * + * This software is provided 'as-is', without any express or implied + * warranty. In no event will the authors be held liable for any + * damages arising from the use of this software. + * Permission is granted to anyone to use this software for any + * purpose, including commercial applications, and to alter it and + * redistribute it freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you + * must not claim that you wrote the original software. If you + * use this software in a product, an acknowledgment in the + * use this software in a product, an acknowledgment in the + * product documentation would be appreciated but is not + * required. + * + * 2. Altered source versions must be plainly marked as such, and + * must not be misrepresented as being the original software. + * + * 3. This notice may not be removed or altered from any source + * distribution. + * + * Description: Implementation of the standard library function memcpy. + * This implementation of memcpy() is ANSI-C89 compatible. + * + * The following configuration options can be set: + * + * CONFIG_ENDIAN_BIG + * Uses processor with big endian addressing. Default is little endian. + * + * CONFIG_MEMCPY_PRE_INC_PTRS + * Use pre increment of pointers. Default is post increment of pointers. + * + * CONFIG_MEMCPY_INDEXED_COPY + * Copying data using array indexing. Using this option, disables the + * CONFIG_MEMCPY_PRE_INC_PTRS option. + * + * CONFIG_MEMCPY_64BIT - Compiles memcpy for 64 bit architectures + * + ****************************************************************************/ + +/**************************************************************************** + * Configuration definitions. + ****************************************************************************/ + +#define CONFIG_MEMCPY_INDEXED_COPY + +/******************************************************************** + * Included Files + *******************************************************************/ + +#include +#include + +#include +#include +#include + +/******************************************************************** + * Pre-processor Definitions + *******************************************************************/ + +/* Can't support CONFIG_MEMCPY_64BIT if the platform does not have 64-bit + * integer types. + */ + +#ifndef CONFIG_HAVE_LONG_LONG +# undef CONFIG_MEMCPY_64BIT +#endif + +/* Remove definitions when CONFIG_MEMCPY_INDEXED_COPY is defined */ + +#if defined (CONFIG_MEMCPY_INDEXED_COPY) +# if defined (CONFIG_MEMCPY_PRE_INC_PTRS) +# undef CONFIG_MEMCPY_PRE_INC_PTRS +# endif /* CONFIG_MEMCPY_PRE_INC_PTRS */ +#endif /* CONFIG_MEMCPY_INDEXED_COPY */ + +/* Definitions for pre and post increment of pointers */ + +#if defined (CONFIG_MEMCPY_PRE_INC_PTRS) + +# define START_VAL(x) (x)-- +# define INC_VAL(x) *++(x) +# define CAST_TO_U8(p, o) ((uint8_t*)p + o + TYPE_WIDTH) +# define WHILE_DEST_BREAK (TYPE_WIDTH - 1) +# define PRE_LOOP_ADJUST - (TYPE_WIDTH - 1) +# define PRE_SWITCH_ADJUST + 1 + +#else /* CONFIG_MEMCPY_PRE_INC_PTRS */ + +# define START_VAL(x) +# define INC_VAL(x) *(x)++ +# define CAST_TO_U8(p, o) ((uint8_t*)p + o) +# define WHILE_DEST_BREAK 0 +# define PRE_LOOP_ADJUST +# define PRE_SWITCH_ADJUST + +#endif /* CONFIG_MEMCPY_PRE_INC_PTRS */ + +/* Definitions for endian-ness */ + +#ifdef CONFIG_ENDIAN_BIG + +# define SHL << +# define SHR >> + +#else /* CONFIG_ENDIAN_BIG */ + +# define SHL >> +# define SHR << + +#endif /* CONFIG_ENDIAN_BIG */ + +/******************************************************************** + * Macros for copying words of different alignment. + * Uses incremening pointers. + *******************************************************************/ + +#define CP_INCR() \ +{ \ + INC_VAL(dstN) = INC_VAL(srcN); \ +} + +#define CP_INCR_SH(shl, shr) \ +{ \ + dstWord = srcWord SHL shl; \ + srcWord = INC_VAL(srcN); \ + dstWord |= srcWord SHR shr; \ + INC_VAL(dstN) = dstWord; \ +} + +/******************************************************************** + * Macros for copying words of different alignment. + * Uses array indexes. + *******************************************************************/ + +#define CP_INDEX(idx) \ +{ \ + dstN[idx] = srcN[idx]; \ +} + +#define CP_INDEX_SH(x, shl, shr) \ +{ \ + dstWord = srcWord SHL shl; \ + srcWord = srcN[x]; \ + dstWord |= srcWord SHR shr; \ + dstN[x] = dstWord; \ +} + +/******************************************************************** + * Macros for copying words of different alignment. + * Uses incremening pointers or array indexes depending on + * configuration. + *******************************************************************/ + +#if defined (CONFIG_MEMCPY_INDEXED_COPY) + +# define CP(idx) CP_INDEX(idx) +# define CP_SH(idx, shl, shr) CP_INDEX_SH(idx, shl, shr) + +# define INC_INDEX(p, o) ((p) += (o)) + +#else /* CONFIG_MEMCPY_INDEXED_COPY */ + +# define CP(idx) CP_INCR() +# define CP_SH(idx, shl, shr) CP_INCR_SH(shl, shr) + +# define INC_INDEX(p, o) + +#endif /* CONFIG_MEMCPY_INDEXED_COPY */ + +#define COPY_REMAINING(count) \ +{ \ + START_VAL(dst8); \ + START_VAL(src8); \ + \ + switch (count) \ + { \ + case 7: INC_VAL(dst8) = INC_VAL(src8); \ + case 6: INC_VAL(dst8) = INC_VAL(src8); \ + case 5: INC_VAL(dst8) = INC_VAL(src8); \ + case 4: INC_VAL(dst8) = INC_VAL(src8); \ + case 3: INC_VAL(dst8) = INC_VAL(src8); \ + case 2: INC_VAL(dst8) = INC_VAL(src8); \ + case 1: INC_VAL(dst8) = INC_VAL(src8); \ + case 0: \ + default: break; \ + } \ +} + +#define COPY_NO_SHIFT() \ +{ \ + UIntN* dstN = (UIntN*)(dst8 PRE_LOOP_ADJUST); \ + UIntN* srcN = (UIntN*)(src8 PRE_LOOP_ADJUST); \ + size_t length = count / TYPE_WIDTH; \ + \ + while (length & 7) \ + { \ + CP_INCR(); \ + length--; \ + } \ + \ + length /= 8; \ + \ + while (length--) \ + { \ + CP(0); \ + CP(1); \ + CP(2); \ + CP(3); \ + CP(4); \ + CP(5); \ + CP(6); \ + CP(7); \ + \ + INC_INDEX(dstN, 8); \ + INC_INDEX(srcN, 8); \ + } \ + \ + src8 = CAST_TO_U8(srcN, 0); \ + dst8 = CAST_TO_U8(dstN, 0); \ + \ + COPY_REMAINING(count & (TYPE_WIDTH - 1)); \ + \ + return dest; \ +} + +#define COPY_SHIFT(shift) \ +{ \ + UIntN* dstN = (UIntN*)((((UIntN)dst8) PRE_LOOP_ADJUST) & \ + ~(TYPE_WIDTH - 1)); \ + UIntN* srcN = (UIntN*)((((UIntN)src8) PRE_LOOP_ADJUST) & \ + ~(TYPE_WIDTH - 1)); \ + size_t length = count / TYPE_WIDTH; \ + UIntN srcWord = INC_VAL(srcN); \ + UIntN dstWord; \ + \ + while (length & 7) \ + { \ + CP_INCR_SH(8 * shift, 8 * (TYPE_WIDTH - shift)); \ + length--; \ + } \ + \ + length /= 8; \ + \ + while (length--) \ + { \ + CP_SH(0, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ + CP_SH(1, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ + CP_SH(2, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ + CP_SH(3, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ + CP_SH(4, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ + CP_SH(5, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ + CP_SH(6, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ + CP_SH(7, 8 * shift, 8 * (TYPE_WIDTH - shift)); \ + \ + INC_INDEX(dstN, 8); \ + INC_INDEX(srcN, 8); \ + } \ + \ + src8 = CAST_TO_U8(srcN, (shift - TYPE_WIDTH)); \ + dst8 = CAST_TO_U8(dstN, 0); \ + \ + COPY_REMAINING(count & (TYPE_WIDTH - 1)); \ + \ + return dest; \ +} + +/******************************************************************** + * Type Definitions + *******************************************************************/ + +#ifdef CONFIG_MEMCPY_64BIT +typedef uint64_t UIntN; +# define TYPE_WIDTH 8L +#else +typedef uint32_t UIntN; +# define TYPE_WIDTH 4L +#endif + +/******************************************************************** + * Public Functions + *******************************************************************/ +/******************************************************************** + * Name: memcpy + * + * Description: + * Copies count bytes from src to dest. No overlap check is performed. + * + * Input Parameters: + * dest - pointer to destination buffer + * src - pointer to source buffer + * count - number of bytes to copy + * + * Returned Value: + * A pointer to destination buffer + * + *******************************************************************/ + +void *memcpy(void *dest, const void *src, size_t count) +{ + uint8_t *dst8 = (uint8_t*)dest; + uint8_t *src8 = (uint8_t*)src; + + if (count < 8) + { + COPY_REMAINING(count); + return dest; + } + + START_VAL(dst8); + START_VAL(src8); + + while (((UIntN)dst8 & (TYPE_WIDTH - 1)) != WHILE_DEST_BREAK) + { + INC_VAL(dst8) = INC_VAL(src8); + count--; + } + + switch ((((UIntN)src8) PRE_SWITCH_ADJUST) & (TYPE_WIDTH - 1)) + { + case 0: COPY_NO_SHIFT(); break; + case 1: COPY_SHIFT(1); break; + case 2: COPY_SHIFT(2); break; + case 3: COPY_SHIFT(3); break; +#if TYPE_WIDTH > 4 + case 4: COPY_SHIFT(4); break; + case 5: COPY_SHIFT(5); break; + case 6: COPY_SHIFT(6); break; + case 7: COPY_SHIFT(7); break; +#endif + } + + return dest; +} diff --git a/libc/termios/Make.defs b/libc/termios/Make.defs index a6bb77f835..d20a5f95c7 100644 --- a/libc/termios/Make.defs +++ b/libc/termios/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/misc/Make.defs +# libc/misc/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/termios/lib_cfgetspeed.c b/libc/termios/lib_cfgetspeed.c index d7f0dc4736..da10daac1e 100644 --- a/libc/termios/lib_cfgetspeed.c +++ b/libc/termios/lib_cfgetspeed.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/termios/lib_cfgetspeed.c + * libc/termios/lib_cfgetspeed.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/termios/lib_cfsetspeed.c b/libc/termios/lib_cfsetspeed.c index 714562ff50..a2a9475c4b 100644 --- a/libc/termios/lib_cfsetspeed.c +++ b/libc/termios/lib_cfsetspeed.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/termios/lib_cfsetspeed.c + * libc/termios/lib_cfsetspeed.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/termios/lib_tcflush.c b/libc/termios/lib_tcflush.c index 338524bdda..1a9710f6a0 100644 --- a/libc/termios/lib_tcflush.c +++ b/libc/termios/lib_tcflush.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/termios/lib_tcflush.c + * libc/termios/lib_tcflush.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/termios/lib_tcgetattr.c b/libc/termios/lib_tcgetattr.c index 500871d9ff..e8d3112603 100644 --- a/libc/termios/lib_tcgetattr.c +++ b/libc/termios/lib_tcgetattr.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/termios/lib_tcgetattr.c + * libc/termios/lib_tcgetattr.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/termios/lib_tcsetattr.c b/libc/termios/lib_tcsetattr.c index 791b519c85..901f2a1368 100644 --- a/libc/termios/lib_tcsetattr.c +++ b/libc/termios/lib_tcsetattr.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/termios/lib_tcsetattr.c + * libc/termios/lib_tcsetattr.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/time/Make.defs b/libc/time/Make.defs index ab74142291..4848813d11 100644 --- a/libc/time/Make.defs +++ b/libc/time/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/time/Make.defs +# libc/time/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/time/lib_calendar2utc.c b/libc/time/lib_calendar2utc.c index e80c292fc6..1b8c40a9ea 100644 --- a/libc/time/lib_calendar2utc.c +++ b/libc/time/lib_calendar2utc.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/time/lib_calendar2utc.c + * libc/time/lib_calendar2utc.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/time/lib_daysbeforemonth.c b/libc/time/lib_daysbeforemonth.c index 8000b0e7a9..28f4d67a97 100644 --- a/libc/time/lib_daysbeforemonth.c +++ b/libc/time/lib_daysbeforemonth.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/time/lib_daysbeforemonth.c + * libc/time/lib_daysbeforemonth.c * * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/time/lib_gmtime.c b/libc/time/lib_gmtime.c index 99afeded9e..7a4d0f5e14 100644 --- a/libc/time/lib_gmtime.c +++ b/libc/time/lib_gmtime.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/time/lib_gmtime.c + * libc/time/lib_gmtime.c * * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/time/lib_gmtimer.c b/libc/time/lib_gmtimer.c index ba1c9724f1..d986205276 100644 --- a/libc/time/lib_gmtimer.c +++ b/libc/time/lib_gmtimer.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/time/lib_gmtimer.c + * libc/time/lib_gmtimer.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/time/lib_isleapyear.c b/libc/time/lib_isleapyear.c index 966c248e01..386e205b2e 100644 --- a/libc/time/lib_isleapyear.c +++ b/libc/time/lib_isleapyear.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/time/lib_isleapyear.c + * libc/time/lib_isleapyear.c * * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/time/lib_mktime.c b/libc/time/lib_mktime.c index 8c17e7c0ab..25254d70e5 100644 --- a/libc/time/lib_mktime.c +++ b/libc/time/lib_mktime.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/time/lib_mktime.c + * libc/time/lib_mktime.c * * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/time/lib_strftime.c b/libc/time/lib_strftime.c index cd0804f55d..3b0c8dd8f3 100644 --- a/libc/time/lib_strftime.c +++ b/libc/time/lib_strftime.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/time/lib_strftime.c + * libc/time/lib_strftime.c * * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/time/lib_time.c b/libc/time/lib_time.c index 106a04c366..673f6fdcdd 100644 --- a/libc/time/lib_time.c +++ b/libc/time/lib_time.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/time/lib_time.c + * libc/time/lib_time.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/unistd/Make.defs b/libc/unistd/Make.defs index e1441a48d3..67fce9b1d7 100644 --- a/libc/unistd/Make.defs +++ b/libc/unistd/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# lib/unistd/Make.defs +# libc/unistd/Make.defs # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/libc/unistd/lib_chdir.c b/libc/unistd/lib_chdir.c index 3dd1333cec..8953fb19b6 100644 --- a/libc/unistd/lib_chdir.c +++ b/libc/unistd/lib_chdir.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/unistd/lib_chdir.c + * libc/unistd/lib_chdir.c * * Copyright (C) 2008-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/unistd/lib_getcwd.c b/libc/unistd/lib_getcwd.c index b94823300b..717ef29717 100644 --- a/libc/unistd/lib_getcwd.c +++ b/libc/unistd/lib_getcwd.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/unistd/lib_getcwd.c + * libc/unistd/lib_getcwd.c * * Copyright (C) 2008, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/unistd/lib_getopt.c b/libc/unistd/lib_getopt.c index 832d287213..1a91909765 100644 --- a/libc/unistd/lib_getopt.c +++ b/libc/unistd/lib_getopt.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/unistd/lib_getopt.c + * libc/unistd/lib_getopt.c * * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/unistd/lib_getoptargp.c b/libc/unistd/lib_getoptargp.c index 98a4850169..5610342ca9 100644 --- a/libc/unistd/lib_getoptargp.c +++ b/libc/unistd/lib_getoptargp.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/unistd/lib_getoptargp.c + * libc/unistd/lib_getoptargp.c * * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/unistd/lib_getoptindp.c b/libc/unistd/lib_getoptindp.c index 7714f8e708..94ea4d3fcd 100644 --- a/libc/unistd/lib_getoptindp.c +++ b/libc/unistd/lib_getoptindp.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/unistd/lib_getoptindp.c + * libc/unistd/lib_getoptindp.c * * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/libc/unistd/lib_getoptoptp.c b/libc/unistd/lib_getoptoptp.c index 4805b7ac3b..cd99b172f0 100644 --- a/libc/unistd/lib_getoptoptp.c +++ b/libc/unistd/lib_getoptoptp.c @@ -1,5 +1,5 @@ /**************************************************************************** - * lib/unistd/lib_getoptoptp.c + * libc/unistd/lib_getoptoptp.c * * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt