summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorkleink <kleink@NetBSD.org>2005-02-09 21:35:46 +0000
committerkleink <kleink@NetBSD.org>2005-02-09 21:35:46 +0000
commitfd5cb0acea84d278e04e640d37ca2398f894991f (patch)
tree7491880dfdd2422b7764def72de04814feb1363e /include
parenta7126d64352edba69608f07191b9be56111e16f5 (diff)
A little libc namespace housekeeping exercise:
* Make vfprintf_unlocked() an internal function, c.f. __svfscanf_unlocked(). * Add internal names for arc4random(), endnetpath(), fhstatvfs(), fstatvfs(), mkstemp(), shquote(), statvfs(), taddr2uaddr(), uaddr2taddr(), uuid_create_nil(), uuid_is_nil(), and wcwidth(). * Include namespace.h where supposed to.
Diffstat (limited to 'include')
-rw-r--r--include/stdio.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/stdio.h b/include/stdio.h
index 15f690ac6e9..08b633f32fc 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -1,4 +1,4 @@
-/* $NetBSD: stdio.h,v 1.57 2005/02/03 04:39:32 perry Exp $ */
+/* $NetBSD: stdio.h,v 1.58 2005/02/09 21:35:46 kleink Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -248,8 +248,6 @@ int sscanf(const char * __restrict, const char * __restrict, ...);
FILE *tmpfile(void);
int ungetc(int, FILE *);
int vfprintf(FILE * __restrict, const char * __restrict, _BSD_VA_LIST_);
-int vfprintf_unlocked(FILE * __restrict, const char * __restrict,
- _BSD_VA_LIST_);
int vprintf(const char * __restrict, _BSD_VA_LIST_);
#ifndef __AUDIT__