summaryrefslogtreecommitdiff
path: root/bmtoa.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2011-01-15 10:19:20 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2011-01-15 10:30:10 -0800
commitb3f10a08922f568b7cbc791354cf0d4267cd88c1 (patch)
treed065d9f02d4608c928bc184da9e19276f7efd832 /bmtoa.c
parentff81a4e4e894915bb6b8aece8314ca1a854140a4 (diff)
Use autoconf standard HAVE_MKSTEMP define instead of old imake HAS_MKSTEMP
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'bmtoa.c')
-rw-r--r--bmtoa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bmtoa.c b/bmtoa.c
index 5e48776..2918469 100644
--- a/bmtoa.c
+++ b/bmtoa.c
@@ -44,7 +44,7 @@ from The Open Group.
#include <stdlib.h>
#include <unistd.h>
-#ifndef HAS_MKSTEMP
+#ifndef HAVE_MKSTEMP
extern char *mktemp();
#endif
@@ -78,7 +78,7 @@ copy_stdin (void)
FILE *fp;
int nread, nwritten;
-#ifndef HAS_MKSTEMP
+#ifndef HAVE_MKSTEMP
if (mktemp (tmpfilename) == NULL) {
fprintf (stderr,
"%s: unable to genererate temporary file name for stdin.\n",