summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nuttx/include/string.h2
-rwxr-xr-xnuttx/tools/mkdeps.sh5
2 files changed, 4 insertions, 3 deletions
diff --git a/nuttx/include/string.h b/nuttx/include/string.h
index da77502fe..e63895188 100644
--- a/nuttx/include/string.h
+++ b/nuttx/include/string.h
@@ -47,8 +47,6 @@
* Definitions
************************************************************/
-#define bzero(s,n) memset((s),0,(n))
-
/************************************************************
* Global Function Prototypes
************************************************************/
diff --git a/nuttx/tools/mkdeps.sh b/nuttx/tools/mkdeps.sh
index 086778fbe..54ffbb1ee 100755
--- a/nuttx/tools/mkdeps.sh
+++ b/nuttx/tools/mkdeps.sh
@@ -48,11 +48,14 @@ args=
# Accumulate CFLAGS up to "--"
for i in $* ; do
case $i in
- --*)
+ -- )
cc=$cflags
cflags=$args
args=
;;
+ --debug )
+ set -x
+ ;;
*)
args="$args $i"
;;