mirror of
https://github.com/Interlisp/maiko.git
synced 2026-03-09 12:06:07 +00:00
Include for missing definition for MAXNAMLEN on Solaris (#462)
The fix to allow compiling for Alpine Linux caused breakage on Solaris because MAXNAMLEN is defined in <dirent.h> which was now NOT included. Pending a conversion to POSIX NAME_MAX, include <dirent.h> in "locfile.h".
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
/************************************************************************/
|
||||
#include <errno.h>
|
||||
#include <limits.h> /* for NAME_MAX */
|
||||
#include <dirent.h> /* for MAXNAMLEN */
|
||||
#include "lispemul.h" /* for DLword */
|
||||
|
||||
#define FDEV_PAGE_SIZE 512 /* 1 page == 512 byte */
|
||||
|
||||
Reference in New Issue
Block a user