Check __NetBSD__ prior to unix.

This commit is contained in:
enami 1998-08-30 22:51:44 +00:00
parent 4dbdab4423
commit daede63067
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pathnames.h,v 1.6 1995/09/29 00:27:55 cgd Exp $ */
/* $NetBSD: pathnames.h,v 1.7 1998/08/30 22:51:44 enami Exp $ */
/*
* Copyright (c) 1989, 1993
@ -48,7 +48,7 @@
#define UNIQUE 3 /* unique char location */
#endif
#if defined(unix) || defined(__NetBSD__)
#if defined(__NetBSD__) || defined(unix)
#define _PATH_DIVNAME "/tmp/m4.0XXXXXX" /* unix diversion files */
#define UNIQUE 8 /* unique char location */
#endif