home *** CD-ROM | disk | FTP | other *** search
/ Dream 45 / Amiga_Dream_45.iso / Amiga / Magazine / Dossier-LaTeX / AmiWeb2C.lha / source / web2c-6.1 / web2c / lib / alloca.ch next >
Text File  |  1995-03-26  |  532b  |  39 lines

  1. Changes for ALLOCA.C by Andreas Scherer, March 23, 1995.
  2.  
  3. @x l.24
  4. #ifdef HAVE_CONFIG_H
  5. #include "config.h"
  6. #endif
  7. @y
  8. #include "andyconfig.h"
  9. @z
  10.  
  11. This is already done in <stdio.h> or <stdlib.h> and SAS complains
  12. about the double defined identifier (and maybe it should be `0L').
  13.  
  14. @x l.65
  15. #define    NULL    0
  16.  
  17. @y
  18. @z
  19.  
  20. @x l.67
  21. extern pointer xmalloc ();
  22. @y
  23. extern pointer xmalloc (unsigned);
  24. @z
  25.  
  26. @x l.91
  27. find_stack_direction ()
  28. @y
  29. find_stack_direction (void)
  30. @z
  31.  
  32. @x l.145
  33. alloca (size)
  34.      unsigned size;
  35. @y
  36. alloca (
  37.      unsigned size)
  38. @z
  39.