26 lines
		
	
	
	
		
			510 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 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
 |