
/*
 * DEFS.H
 *
 *      (C)Copyright 1987 by Matthew Dillon, All Rights Reserved
 *
 *      ARexx support added 03/19/88  -  Kim DeVaughn
 *
 */

#define AREXX

#include "all.h"
#include "prog-protos.h"

BOOL WildCmp (const char *, const char *);

/* Macros are faster than Functions */
#define alloclptr(lines)    AllocMem (lines*sizeof(LINE), 0)
#define allocb(bytes)       AllocMem (bytes, 0)
#define allocl(lwords)      AllocMem (lwords<<2, 0)
#define bmovl(s,d,n)        movmem (s, d, n << 2)

#define  PATHSIZE       256     /* HD added for Requesters */
