summaryrefslogtreecommitdiff
path: root/nuttx/lib/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-11-20 15:42:11 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-11-20 15:42:11 +0000
commit93c4e0321431ad4164eb37c26c532d187d0aa1ab (patch)
tree28fc46e609bc1173829bd25ec034cd94f94949eb /nuttx/lib/Makefile
parentd0cef5c3e03a693460840cfa88bdd183248cf875 (diff)
downloadpx4-nuttx-93c4e0321431ad4164eb37c26c532d187d0aa1ab.tar.gz
px4-nuttx-93c4e0321431ad4164eb37c26c532d187d0aa1ab.tar.bz2
px4-nuttx-93c4e0321431ad4164eb37c26c532d187d0aa1ab.zip
Add strcat() and strncat()
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@390 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/lib/Makefile')
-rw-r--r--nuttx/lib/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/lib/Makefile b/nuttx/lib/Makefile
index 5f08c7564..9200a3dc3 100644
--- a/nuttx/lib/Makefile
+++ b/nuttx/lib/Makefile
@@ -47,9 +47,9 @@ endif
STRING_SRCS = lib_memset.c lib_memcpy.c lib_memcmp.c lib_memmove.c \
lib_strcpy.c lib_strncpy.c lib_strcmp.c lib_strncmp.c \
- lib_strlen.c lib_strdup.c lib_strtol.c lib_strchr.c \
- lib_strrchr.c lib_strspn.c lib_strcspn.c lib_strtok.c \
- lib_strtokr.c lib_strerror.c
+ lib_strlen.c lib_strdup.c lib_strcat.c lib_strncat.c \
+ lib_strtol.c lib_strchr.c lib_strrchr.c lib_strspn.c \
+ lib_strcspn.c lib_strtok.c lib_strtokr.c lib_strerror.c
CTYPE_SRCS =