Srealloc.c 458 B

123456789101112131415161718192021
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. /* M E M O R Y A L L O C A T I O N R O U T I N E S */
  7. /* The memory allocation routines offered in this file are:
  8. char *Srealloc(ptr, n) : reallocate buffer to n bytes
  9. */
  10. #include "alloc.h"
  11. char *
  12. Srealloc(str, sz)
  13. char str[];
  14. unsigned int sz;
  15. {
  16. return Realloc(str, sz);
  17. }