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 (parent:
04bada7
)
Converted to use weak aliases with macros from libc-symbols.h.
author
roland
<roland>
Sat, 21 Jan 1995 14:28:02 +0000
(14:28 +0000)
committer
roland
<roland>
Sat, 21 Jan 1995 14:28:02 +0000
(14:28 +0000)
sysdeps/generic/copysign.c
patch
|
blob
|
history
sysdeps/standalone/close.c
patch
|
blob
|
history
diff --git
a/sysdeps/generic/copysign.c
b/sysdeps/generic/copysign.c
index
9139e95
..
0bd3ed9
100644
(file)
--- a/
sysdeps/generic/copysign.c
+++ b/
sysdeps/generic/copysign.c
@@
-1,4
+1,4
@@
-/* Copyright (C) 1992 Free Software Foundation, Inc.
+/* Copyright (C) 1992
, 1995
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
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@
-26,3
+26,5
@@
DEFUN(__copysign, (x, y), double x AND double y)
x = fabs (x);
return y < 0 ? - x : x;
}
x = fabs (x);
return y < 0 ? - x : x;
}
+
+weak_alias (__copysign, copysign)
diff --git
a/sysdeps/standalone/close.c
b/sysdeps/standalone/close.c
index
d7674ae
..
59b6073
100644
(file)
--- a/
sysdeps/standalone/close.c
+++ b/
sysdeps/standalone/close.c
@@
-1,4
+1,4
@@
-/* Copyright (C) 1994 Free Software Foundation, Inc.
+/* Copyright (C) 1994
, 1995
Free Software Foundation, Inc.
Ported to standalone by Joel Sherrill jsherril@redstone-emh2.army.mil,
On-Line Applications Research Corporation.
Ported to standalone by Joel Sherrill jsherril@redstone-emh2.army.mil,
On-Line Applications Research Corporation.
@@
-40,3
+40,5
@@
DEFUN(__close, (fd), int fd)
return 0;
}
return 0;
}
+
+weak_alias (__close, close)