diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-02 10:50:22 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-02 10:50:22 +0000 |
commit | a4ade3ea516f64b48a7495115551d8252c22e812 (patch) | |
tree | dcf40297e9da3b717cd3d8610d8ac34a587fdbbf /libc/misc/time | |
parent | 67663cc8ecf513a29af76a49afd0d6388e0cc92e (diff) |
Add in a weak for __adjtime
Diffstat (limited to 'libc/misc/time')
-rw-r--r-- | libc/misc/time/adjtime.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/misc/time/adjtime.c b/libc/misc/time/adjtime.c index 2a9190e9b..6d686bfda 100644 --- a/libc/misc/time/adjtime.c +++ b/libc/misc/time/adjtime.c @@ -49,3 +49,5 @@ adjtime(const struct timeval * itv, struct timeval * otv) } return 0; } +weak_alias(adjtime, __adjtime); + |