summaryrefslogtreecommitdiff
path: root/sys/arch/i386
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1997-05-01 04:10:40 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1997-05-01 04:10:40 +0000
commit4c160a87cf672cba5d10b33121854b40981de3ca (patch)
tree09c27ff4349dac6d6bc2c08e0e9e561d31bfee4c /sys/arch/i386
parent011536a18e5d2775bde6f24557b074726590b902 (diff)
alloca(size_t)
not int
Diffstat (limited to 'sys/arch/i386')
-rw-r--r--sys/arch/i386/stand/libsa/libsa.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/libsa/libsa.h b/sys/arch/i386/stand/libsa/libsa.h
index c150183074e..2ee0f64b1e1 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.6 1997/04/30 18:33:12 weingart Exp $ */
+/* $OpenBSD: libsa.h,v 1.7 1997/05/01 04:10:39 mickey Exp $ */
/*
* Copyright (c) 1996 Michael Shalayeff
@@ -37,7 +37,7 @@
void gateA20 __P((int));
void memprobe __P((void));
void devboot __P((dev_t, char *));
-void *alloca __P((int));
+void *alloca __P((size_t));
extern u_long codeseg;
extern int boothowto;