summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Weingartner <weingart@cvs.openbsd.org>1997-04-30 18:33:13 +0000
committerTobias Weingartner <weingart@cvs.openbsd.org>1997-04-30 18:33:13 +0000
commit1fea5b9ddfbdc6cf89001c0135f890d4451282d1 (patch)
treeadf3d42dd3e5a472fbda37c992c27a17b2c64962
parent60019b1ec2a9f0c8f12c02fc90585957512493a2 (diff)
Add missing prototype: alloca()
-rw-r--r--sys/arch/i386/stand/libsa/libsa.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/stand/libsa/libsa.h b/sys/arch/i386/stand/libsa/libsa.h
index d0b02994d47..c150183074e 100644
--- a/sys/arch/i386/stand/libsa/libsa.h
+++ b/sys/arch/i386/stand/libsa/libsa.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: libsa.h,v 1.5 1997/04/15 20:50:36 mickey Exp $ */
+/* $OpenBSD: libsa.h,v 1.6 1997/04/30 18:33:12 weingart Exp $ */
/*
* Copyright (c) 1996 Michael Shalayeff
@@ -37,6 +37,7 @@
void gateA20 __P((int));
void memprobe __P((void));
void devboot __P((dev_t, char *));
+void *alloca __P((int));
extern u_long codeseg;
extern int boothowto;