Skip to content

Commit

Permalink
Added memmove as a builtin function.
Browse files Browse the repository at this point in the history
  • Loading branch information
ksb committed Aug 22, 2007
1 parent 48e7ef8 commit 93861e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions tools/mknmlist
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ BEGIN {
builtin["malloc"] = "void *malloc()";
builtin["memcpy"] = "void *memcpy()";
builtin["memset"] = "void *memset()";
builtin["memmove"] = "void *memmove()";
builtin["strcpy"] = "char *strcpy()";
builtin[""] = "";
}
Expand Down
1 change: 1 addition & 0 deletions tools/mknmlist-ansi
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ BEGIN {
builtin["malloc"] = "void *malloc()";
builtin["memcpy"] = "void *memcpy()";
builtin["memset"] = "void *memset()";
builtin["memmove"] = "void *memmove()";
builtin["strcpy"] = "char *strcpy()";
#
builtin["sin"] = "double sin()";
Expand Down

0 comments on commit 93861e7

Please sign in to comment.