mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 07:16:23 -05:00
21 lines
321 B
C
21 lines
321 B
C
/* defines.h -- */
|
|
|
|
#ifndef __DEFINES_H__
|
|
#define __DEFINES_H__
|
|
|
|
|
|
/* Must define one of
|
|
USG | BSD
|
|
*/
|
|
#define USG 1
|
|
|
|
#define PKCODE 1
|
|
#define SCROLLCODE 1 /* scrolling code P.K. */
|
|
#define ENVFUNC 1
|
|
|
|
#define NSTRING 128 /* # of bytes, string buffers */
|
|
|
|
#endif
|
|
|
|
/* end of defines.h */
|