18 lines
229 B
C
18 lines
229 B
C
#ifndef GLOBALS_H
|
|
#define GLOBALS_H
|
|
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <fcntl.h>
|
|
|
|
#define ON 1
|
|
#define OFF 0
|
|
#define OK 1
|
|
#define NOTOK 0
|
|
#define BUFFER 1024
|
|
#define MAXBUFSIZE 4096
|
|
|
|
extern int errno;
|
|
|
|
#endif
|