diff options
| author | he <he@NetBSD.org> | 2003-10-30 22:15:28 +0000 |
|---|---|---|
| committer | he <he@NetBSD.org> | 2003-10-30 22:15:28 +0000 |
| commit | 202ba2bdcf62a3ca3db44153e027a342279b541d (patch) | |
| tree | 8da652355bbd8d42ea61b1d3f8239a2243f8b7f0 /sys/lib/libsa | |
| parent | 68a1d153b6a003ee0e2519c85d1e7a169d65985c (diff) | |
Add a prototype for memset().
Diffstat (limited to 'sys/lib/libsa')
| -rw-r--r-- | sys/lib/libsa/stand.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h index 45c7afe48da..302e2f5526c 100644 --- a/sys/lib/libsa/stand.h +++ b/sys/lib/libsa/stand.h @@ -1,4 +1,4 @@ -/* $NetBSD: stand.h,v 1.50 2003/08/18 15:45:29 dsl Exp $ */ +/* $NetBSD: stand.h,v 1.51 2003/10/30 22:15:28 he Exp $ */ /* * Copyright (c) 1999 Christopher G. Demetriou. All rights reserved. @@ -238,6 +238,7 @@ void (bcopy)(const void *, void *, size_t); void *memcpy(void *, const void *, size_t); void *memmove(void *, const void *, size_t); int memcmp(const void *, const void *, size_t); +void *memset(void *, int, size_t); void exec(char *, char *, int); int open(const char *, int); int close(int); |
