1
0
mirror of https://github.com/PDP-10/its.git synced 2026-03-03 02:08:00 +00:00
Files
PDP-10.its/src/clib/clib.h
Lars Brinkhoff 102fe484f8 Make the C library file C10SDF compile.
R needs the setfdir() function.
2021-09-02 18:33:35 +02:00

16 lines
535 B
C

/* Handy definitions */
#define OPENLOSS (-1) /* Returned by COPEN if open fails */
typedef int SIXBIT; /* Six characters packed in one word */
typedef struct { /* ITS filespec in sixbit */
SIXBIT dev, /* Device */
fn1, /* First filename */
fn2, /* Second filename */
dir; /* Directory */
} filespec;
#define TRUE 1
#define FALSE 0