1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-22 02:15:28 +00:00

Merge branch 'master' of ssh://192.168.42.74/Users/briggs/Projects/maiko

This commit is contained in:
Nick Briggs 2020-07-10 00:17:19 -07:00
commit 13625a34e5
2 changed files with 6 additions and 7 deletions

View File

@ -703,6 +703,9 @@ extern int errno;
#define DIRSEPSTR "/"
#define DIRSEP '/'
#define UNIXDIRSEP '/'
/* system includes may already define MAXNAMLEN */
#if !defined(MAXNAMLEN)
#define MAXNAMLEN NAME_MAX
#endif
#endif

View File

@ -349,15 +349,11 @@ typedef signed char s_char;
/* */
/********************************************************/
#ifdef OS5
/* Solaris, sort of SYSV-ish */
/* Solaris, sort of SYSV-ish, but not really */
#undef HAS_GETHOSTID
#define SYSVONLY 1
#define BSD_COMP 1
#define SYSVSIGNALS 1
#define index strchr
#define rindex strrchr
#define bzero(b,n) memset(b,0,n)
#define bcmp(a,b,n) memcmp(a,b,n)
#define bcopy(a,b,n) memcpy(b,a,n)
#define WAITINT 1
#define L_SET SEEK_SET
#define NOFORN
#define LOCK_X_UPDATES 1