24,28c24,37
< #ifdef SV
< #include <string.h>
< #define bzero(s, n) memset((char *)(s), '\000', (unsigned)(n))
< #else
< #include <strings.h>
---
> #ifdef AMIGA
> # define abs(a) ((a) < 0) ? -(a) : (a)
> # ifdef AZTEC_C
> #  define bzero(s,n) setmem((char *)(s), (unsigned)(n), '\0')
> # else
> #  define bzero(s, n) memset((char *)(s), '\000', (unsigned)(n))
> # endif
> #else
> # ifdef SV
> #  include <string.h>
> #  define bzero(s, n) memset((char *)(s), '\000', (unsigned)(n))
> # else
> #  include <strings.h>
> # endif
