summaryrefslogtreecommitdiff
path: root/main/reentrancy.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/reentrancy.c')
-rw-r--r--main/reentrancy.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/main/reentrancy.c b/main/reentrancy.c
index f0c6dacc7b..213e82bd8c 100644
--- a/main/reentrancy.c
+++ b/main/reentrancy.c
@@ -16,8 +16,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#include <sys/types.h>
#include <string.h>
#include <errno.h>
@@ -111,18 +109,6 @@ PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm)
#endif
-#if defined(__BEOS__)
-
-PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm)
-{
- /* Modified according to LibC definition */
- if (((struct tm*)gmtime_r(timep, p_tm)) == p_tm)
- return (p_tm);
- return (NULL);
-}
-
-#endif /* BEOS */
-
#if !defined(HAVE_POSIX_READDIR_R)
PHPAPI int php_readdir_r(DIR *dirp, struct dirent *entry,