aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-04-05 21:06:47 +0000
committerdos-reis <gdr@axiomatics.org>2008-04-05 21:06:47 +0000
commit73bb103e111fb12bed013b2b3728d592c1a11587 (patch)
tree1a538a0253a133db5bed07f8dc85f6c5ad05b568 /src/lib
parentf165b636e6f5041cade0955284503864b07b9f63 (diff)
downloadopen-axiom-73bb103e111fb12bed013b2b3728d592c1a11587.tar.gz
Remove remaining K&R style prototypes.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/util.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/lib/util.c b/src/lib/util.c
index 3d34c275..604931b6 100644
--- a/src/lib/util.c
+++ b/src/lib/util.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
+ Copyright (c) 1991-2002, The Numerical Algorithms Group Ltd.
All rights reserved.
Redistribution and use in source and binary forms, with or without
@@ -14,7 +14,7 @@
the documentation and/or other materials provided with the
distribution.
- - Neither the name of The Numerical ALgorithms Group Ltd. nor the
+ - Neither the name of The Numerical Algorithms Group Ltd. nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
@@ -93,13 +93,7 @@ saymemWithLine(char *str, int num, int size, int lineNum)
void
-#ifdef _NO_PROTO
-myfree(p, size)
- void *p;
- int size;
-#else
myfree(void *p, int size)
-#endif
{
free(p);
}