50dca8b954
bad as I expected, but far too big.
27 lines
510 B
C
27 lines
510 B
C
/* $Source$
|
|
* $State$
|
|
* $Revision$
|
|
*/
|
|
|
|
#ifndef _ACK_PLAT_H
|
|
#define _ACK_PLAT_H
|
|
|
|
/* The 8080 code generator doesn't do floating point. */
|
|
|
|
#define ACKCONF_WANT_STDIO_FLOAT 0
|
|
|
|
/* We're providing a time() system call rather than wanting a wrapper around
|
|
* gettimeofday() in the libc. */
|
|
|
|
#define ACKCONF_WANT_EMULATED_TIME 0
|
|
|
|
/* Processes? CP/M? Hahahaha... */
|
|
|
|
#define ACKCONF_WANT_EMULATED_POPEN 0
|
|
|
|
/* We have a very small address space, so override the default buffer size. */
|
|
|
|
#define BUFSIZ 256
|
|
|
|
#endif
|