summaryrefslogtreecommitdiff
path: root/libc/include/stdarg.h
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>1996-05-31 21:33:17 +0200
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:30:46 +0200
commite85ee07172eccafd9441362e774f7b184810d008 (patch)
tree5dc12259ab7a61b12d9df284fe58ad5cb312c526 /libc/include/stdarg.h
parentdcc973ea3e31710429858c99d4f040334ac67c06 (diff)
downloaddev86-e85ee07172eccafd9441362e774f7b184810d008.tar.gz
Import Dev86-0.0.6.tar.gzv0.0.6
Diffstat (limited to 'libc/include/stdarg.h')
-rw-r--r--libc/include/stdarg.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libc/include/stdarg.h b/libc/include/stdarg.h
index 978529b..d30fbd8 100644
--- a/libc/include/stdarg.h
+++ b/libc/include/stdarg.h
@@ -24,6 +24,9 @@
* verify that the stdarg.h file has been set up correctly.
*/
+#ifndef __STDARG_H
+#define __STDARG_H
+
#ifdef sparc
# define _VA_ALIST_ "__builtin_va_alist"
typedef char *va_list;
@@ -36,3 +39,5 @@
# define va_arg(ap, type) ((type *) (ap += sizeof(type)))[-1]
# define va_end(ap)
#endif
+
+#endif /* __STDARG_H */