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 /resolv | |
parent | 7bd642f580ef5698bd5b1777a5ba7af2f58c5d8c (diff) | |
download | glibc-f1d70dad5381352b3cad04b5ee0dd0efe2627683.tar.gz glibc-f1d70dad5381352b3cad04b5ee0dd0efe2627683.tar.xz glibc-f1d70dad5381352b3cad04b5ee0dd0efe2627683.zip |
Remove lots of inline keywords.
Diffstat (limited to 'resolv')
-rw-r--r-- | resolv/res_send.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resolv/res_send.c b/resolv/res_send.c index c790031b45..60da5c901b 100644 --- a/resolv/res_send.c +++ b/resolv/res_send.c @@ -155,7 +155,7 @@ evSubTime(struct timespec *res, const struct timespec *minuend, } } -static inline int +static int evCmpTime(struct timespec a, struct timespec b) { long x = a.tv_sec - b.tv_sec; @@ -164,7 +164,7 @@ evCmpTime(struct timespec a, struct timespec b) { return (x < 0L ? (-1) : x > 0L ? (1) : (0)); } -static inline void +static void evNowTime(struct timespec *res) { struct timeval now; |