aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2001-10-04 07:37:57 +0000
committerBruce Evans <bde@FreeBSD.org>2001-10-04 07:37:57 +0000
commit9b68c690f16ed059696399ea05bb7fd73f5f5908 (patch)
treee1f1e7270f38a8c2935d3a7f8e06828b4c75c10b /include
parentb228f1f47a90667f02fea032b397fa9fb69b442a (diff)
downloadsrc-9b68c690f16ed059696399ea05bb7fd73f5f5908.tar.gz
src-9b68c690f16ed059696399ea05bb7fd73f5f5908.zip
Fixed namespace pollution:
- only declare the application symbols specified in Posix.1-200x drafts, not everything in <sys/types.h> and <stddef.h>. - don't use the application symbol 'm' for an arg name.
Notes
Notes: svn path=/head/; revision=84441
Diffstat (limited to 'include')
-rw-r--r--include/monetary.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/include/monetary.h b/include/monetary.h
index 177d59026f28..5d7433a9ee28 100644
--- a/include/monetary.h
+++ b/include/monetary.h
@@ -30,11 +30,20 @@
#define _MONETARY_H
#include <sys/cdefs.h>
-#include <sys/types.h>
-#include <stddef.h>
+#include <machine/ansi.h>
+
+#ifdef _BSD_SIZE_T_
+typedef _BSD_SIZE_T_ size_t;
+#undef _BSD_SIZE_T_
+#endif
+
+#ifdef _BSD_SSIZE_T_
+typedef _BSD_SSIZE_T_ ssize_t;
+#undef _BSD_SSIZE_T_
+#endif
__BEGIN_DECLS
-ssize_t strfmon(char *, size_t, const char *m, ...);
+ssize_t strfmon(char *, size_t, const char *, ...);
__END_DECLS
#endif /* _MONETARY_H */