projects
/
bison.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Use prototypes if the compiler understands them.
[bison.git]
/
src
/
alloc.h
diff --git
a/src/alloc.h
b/src/alloc.h
index ab045b360b023d52e65f3e24386b4368849a7529..47542dfa8d68a7e0314f7fec796d5c4e41682be9 100644
(file)
--- a/
src/alloc.h
+++ b/
src/alloc.h
@@
-27,5
+27,5
@@
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define FREE(x) ((x) != 0 && (free ((char *) (x)), 0))
#endif
#define FREE(x) ((x) != 0 && (free ((char *) (x)), 0))
#endif
-extern char *xmalloc
(
);
-extern char *xrealloc
(
);
+extern char *xmalloc
PARAMS((register unsigned)
);
+extern char *xrealloc
PARAMS((register char *, register unsigned)
);