summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/alloca/alloca.c
diff options
context:
space:
mode:
authorderaadt <>2003-07-31 21:48:04 +0000
committerderaadt <>2003-07-31 21:48:04 +0000
commit33c506bfed3ead4cc96819ce600895082c214755 (patch)
treef684ac5f268a986ffa67596e223c418beaac533a /src/regress/lib/libc/alloca/alloca.c
parent1e17357c09b2a156a0fa1407b68c4158394b9d7e (diff)
downloadopenbsd-33c506bfed3ead4cc96819ce600895082c214755.tar.gz
openbsd-33c506bfed3ead4cc96819ce600895082c214755.tar.bz2
openbsd-33c506bfed3ead4cc96819ce600895082c214755.zip
various cleanups; david says results are same
Diffstat (limited to 'src/regress/lib/libc/alloca/alloca.c')
-rw-r--r--src/regress/lib/libc/alloca/alloca.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libc/alloca/alloca.c b/src/regress/lib/libc/alloca/alloca.c
index c8a6b6b40c..1c26429293 100644
--- a/src/regress/lib/libc/alloca/alloca.c
+++ b/src/regress/lib/libc/alloca/alloca.c
@@ -1,11 +1,11 @@
1/* $OpenBSD: alloca.c,v 1.3 2003/07/31 03:23:41 mickey Exp $ */ 1/* $OpenBSD: alloca.c,v 1.4 2003/07/31 21:48:02 deraadt Exp $ */
2 2
3/* Written by Michael Shalayeff, 2003, Public Domain. */ 3/* Written by Michael Shalayeff, 2003, Public Domain. */
4 4
5#include <stdio.h> 5#include <stdio.h>
6 6
7int 7int
8main() 8main(int argc, char *argv[])
9{ 9{
10 char *q, *p; 10 char *q, *p;
11 11