diff options
author | Roland McGrath <roland@hack.frob.com> | 2013-02-07 14:44:18 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2013-02-07 14:44:18 -0800 |
commit | f1d70dad5381352b3cad04b5ee0dd0efe2627683 (patch) | |
tree | 09ee58dd09a6fd5f18131b98cc337a001e90fcb2 /time/mktime.c | |
parent | 7bd642f580ef5698bd5b1777a5ba7af2f58c5d8c (diff) | |
download | glibc-f1d70dad5381352b3cad04b5ee0dd0efe2627683.tar.gz glibc-f1d70dad5381352b3cad04b5ee0dd0efe2627683.tar.xz glibc-f1d70dad5381352b3cad04b5ee0dd0efe2627683.zip |
Remove lots of inline keywords.
Diffstat (limited to 'time/mktime.c')
-rw-r--r-- | time/mktime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/time/mktime.c b/time/mktime.c index 688969be87..e75132c2e4 100644 --- a/time/mktime.c +++ b/time/mktime.c @@ -196,7 +196,7 @@ isdst_differ (int a, int b) The result may overflow. It is the caller's responsibility to detect overflow. */ -static inline time_t +static time_t ydhms_diff (long_int year1, long_int yday1, int hour1, int min1, int sec1, int year0, int yday0, int hour0, int min0, int sec0) { |