aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/include/stdarg.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/i386/include/stdarg.h')
-rw-r--r--sys/i386/include/stdarg.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/i386/include/stdarg.h b/sys/i386/include/stdarg.h
index 39e22920311c..92d7f05ca83b 100644
--- a/sys/i386/include/stdarg.h
+++ b/sys/i386/include/stdarg.h
@@ -31,9 +31,12 @@
* SUCH DAMAGE.
*
* from: @(#)stdarg.h 7.2 (Berkeley) 5/4/91
- * $Id: stdarg.h,v 1.2 1993/10/16 14:39:34 rgrimes Exp $
+ * $Id: stdarg.h,v 1.3 1993/11/07 17:43:12 wollman Exp $
*/
+#ifndef _MACHINE_STDARG_H_
+#define _MACHINE_STDARG_H_ 1
+
typedef char *va_list;
#ifdef KERNEL
@@ -52,3 +55,4 @@ typedef char *va_list;
#define va_start(ap, last) \
(ap = ((char *)&(last) + __va_promote(last)))
+#endif /* _MACHINE_STDARG_H_ */