diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-03-18 21:52:26 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-03-18 21:52:26 -0400 |
commit | f5ba2bc9ca84d67f03f2542bfff0525f2f478e4c (patch) | |
tree | ba091c8f54b1a82ed2d69a461341eb0d640fecd2 /src/stub/utmpx.c | |
parent | fc27b96c7d9b2c82679508a57ac998d773f14f08 (diff) | |
download | musl-f5ba2bc9ca84d67f03f2542bfff0525f2f478e4c.tar.gz musl-f5ba2bc9ca84d67f03f2542bfff0525f2f478e4c.tar.xz musl-f5ba2bc9ca84d67f03f2542bfff0525f2f478e4c.zip |
various legacy and linux-specific stuff
this commit is part of an effort to make more of busybox work out-of-the-box.
Diffstat (limited to 'src/stub/utmpx.c')
-rw-r--r-- | src/stub/utmpx.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/stub/utmpx.c b/src/stub/utmpx.c index 42190ec2..c483e4ed 100644 --- a/src/stub/utmpx.c +++ b/src/stub/utmpx.c @@ -30,9 +30,14 @@ struct utmpx *pututxline(const struct utmpx *ut) return NULL; } +void updwtmpx(const char *f, const struct utmpx *u) +{ +} + weak_alias(endutxent, endutent); weak_alias(setutxent, setutent); weak_alias(getutxent, getutent); weak_alias(getutxid, getutid); weak_alias(getutxline, getutline); weak_alias(pututxline, pututline); +weak_alias(updwtmpx, updwtmp); |