1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

(CFLAGS-oldtmpfile.c): Add -fexceptions.

This commit is contained in:
Ulrich Drepper
2003-09-02 07:14:15 +00:00
parent c503d3dc51
commit f1c30c98b9
17 changed files with 91 additions and 45 deletions

View File

@@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1993, 1996-1999, 2000 Free Software Foundation, Inc.
/* Copyright (C) 1991, 1993, 1996-2000, 2003 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -43,7 +43,7 @@ __old_tmpfile (void)
/* Note that this relies on the Unix semantics that
a file is not really removed until it is closed. */
(void) remove (buf);
(void) __unlink (buf);
if ((f = _IO_old_fdopen (fd, "w+b")) == NULL)
__close (fd);