diff options
| author | Stefan Monnier | 2003-05-25 17:44:14 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-05-25 17:44:14 +0000 |
| commit | 880c108d40a7a1968fd285bfbd8577f5a193f672 (patch) | |
| tree | d1f4fa9183cf2b0bc3072ab98893d2063a64166d /src | |
| parent | 34967d0ff431961dc4ef86d6eb12e19e176963f2 (diff) | |
| download | emacs-880c108d40a7a1968fd285bfbd8577f5a193f672.tar.gz emacs-880c108d40a7a1968fd285bfbd8577f5a193f672.zip | |
(my_strftime_localtime_r): Remove `defined but unused' warning.
Diffstat (limited to 'src')
| -rw-r--r-- | src/strftime.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/strftime.c b/src/strftime.c index e5953152aa0..ecfed2af398 100644 --- a/src/strftime.c +++ b/src/strftime.c | |||
| @@ -1,4 +1,6 @@ | |||
| 1 | /* Copyright (C) 1991,92,93,94,95,96,97,98,99,2000 Free Software Foundation, Inc. | 1 | /* Copyright (C) 1991,92,93,94,95,96,97,98,99,2000,2003 |
| 2 | Free Software Foundation, Inc. | ||
| 3 | |||
| 2 | This file is part of the GNU Emacs. | 4 | This file is part of the GNU Emacs. |
| 3 | 5 | ||
| 4 | The GNU C Library is free software; you can redistribute it and/or | 6 | The GNU C Library is free software; you can redistribute it and/or |
| @@ -198,7 +200,6 @@ my_strftime_gmtime_r (t, tp) | |||
| 198 | *tp = *l; | 200 | *tp = *l; |
| 199 | return tp; | 201 | return tp; |
| 200 | } | 202 | } |
| 201 | # endif /* ! HAVE_TM_GMTOFF */ | ||
| 202 | 203 | ||
| 203 | static struct tm *my_strftime_localtime_r __P ((const time_t *, struct tm *)); | 204 | static struct tm *my_strftime_localtime_r __P ((const time_t *, struct tm *)); |
| 204 | static struct tm * | 205 | static struct tm * |
| @@ -212,6 +213,8 @@ my_strftime_localtime_r (t, tp) | |||
| 212 | *tp = *l; | 213 | *tp = *l; |
| 213 | return tp; | 214 | return tp; |
| 214 | } | 215 | } |
| 216 | # endif /* ! HAVE_TM_GMTOFF */ | ||
| 217 | |||
| 215 | #endif /* ! defined _LIBC */ | 218 | #endif /* ! defined _LIBC */ |
| 216 | 219 | ||
| 217 | 220 | ||