projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
2b9a0f4
)
Use __close instead of close.
author
drepper
<drepper>
Fri, 17 Aug 2001 06:28:22 +0000
(06:28 +0000)
committer
drepper
<drepper>
Fri, 17 Aug 2001 06:28:22 +0000
(06:28 +0000)
libio/freopen.c
patch
|
blob
|
history
libio/freopen64.c
patch
|
blob
|
history
diff --git
a/libio/freopen.c
b/libio/freopen.c
index
584b6e0
..
74cba84
100644
(file)
--- a/
libio/freopen.c
+++ b/
libio/freopen.c
@@
-67,7
+67,7
@@
freopen (filename, mode, fp)
result->_mode = 0;
if (fd != -1)
{
- close (fd);
+
__
close (fd);
if (filename != NULL)
free ((char *) filename);
}
diff --git
a/libio/freopen64.c
b/libio/freopen64.c
index
28cfb79
..
d1dcdea
100644
(file)
--- a/
libio/freopen64.c
+++ b/
libio/freopen64.c
@@
-57,7
+57,7
@@
freopen64 (filename, mode, fp)
result->_mode = 0;
if (fd != -1)
{
- close (fd);
+
__
close (fd);
if (filename != NULL)
free ((char *) filename);
}