File: defs.h

package info (click to toggle)
modemu 0.0.1-6
  • links: PTS
  • area: main
  • in suites: woody
  • size: 208 kB
  • ctags: 266
  • sloc: ansic: 1,860; lex: 146; makefile: 75; sh: 12
file content (21 lines) | stat: -rw-r--r-- 390 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#define VERSION_MAJOR	0
#define VERSION_MINOR	0.1

/* socket read buffer size */
#define SOCKBUFR_SIZE	1024

/* tty read buffer size */
#define TTYBUFR_SIZE	1024

/* line (!char) mode line-length */
#define LINEBUF_SIZE	256

/* command mode line-length (w/o null) */
#define CMDBUF_MAX	255

typedef unsigned char uchar;

#if defined(__GLIBC__) || defined(SVR4)
#define HAVE_GRANTPT
#endif