From 8fd583973e51d76536f33d0d57120bf69e43f408 Mon Sep 17 00:00:00 2001 From: Douglas B Rupp Date: Thu, 29 Apr 2004 15:28:42 +0000 Subject: gcc.c (DELETE_IF_ORDINARY): New macro default definition. * gcc.c (DELETE_IF_ORDINARY): New macro default definition. (delete_if_ordinary): Use above macro. * config/alpha/xm-vms.h (DELETE_IF_ORDINARY): New macro VMS definition. Update copyright. * doc/hostconfig.texi (DELETE_IF_ORDINARY): Document new macro. * libiberty/mkstemps.c (mkstemps) [VMS]: Remove special open option. Update copyright. From-SVN: r81290 --- libiberty/mkstemps.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'libiberty/mkstemps.c') diff --git a/libiberty/mkstemps.c b/libiberty/mkstemps.c index 1f6600a..94edf78 100644 --- a/libiberty/mkstemps.c +++ b/libiberty/mkstemps.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1996, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1996, 1998, 2004 Free Software Foundation, Inc. This file is derived from mkstemp.c from the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -121,11 +121,7 @@ mkstemps (template, suffix_len) v /= 62; XXXXXX[5] = letters[v % 62]; -#ifdef VMS - fd = open (template, O_RDWR|O_CREAT|O_EXCL, 0600, "fop=tmd"); -#else fd = open (template, O_RDWR|O_CREAT|O_EXCL, 0600); -#endif if (fd >= 0) /* The file does not exist. */ return fd; -- cgit v1.1