Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1073)

Side by Side Diff: fusl/src/legacy/utmpx.c

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/src/legacy/ulimit.c ('k') | fusl/src/legacy/valloc.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include <utmpx.h>
2 #include <stddef.h>
3 #include "libc.h"
4
5 void endutxent(void)
6 {
7 }
8
9 void setutxent(void)
10 {
11 }
12
13 struct utmpx *getutxent(void)
14 {
15 return NULL;
16 }
17
18 struct utmpx *getutxid(const struct utmpx *ut)
19 {
20 return NULL;
21 }
22
23 struct utmpx *getutxline(const struct utmpx *ut)
24 {
25 return NULL;
26 }
27
28 struct utmpx *pututxline(const struct utmpx *ut)
29 {
30 return NULL;
31 }
32
33 void updwtmpx(const char *f, const struct utmpx *u)
34 {
35 }
36
37 weak_alias(endutxent, endutent);
38 weak_alias(setutxent, setutent);
39 weak_alias(getutxent, getutent);
40 weak_alias(getutxid, getutid);
41 weak_alias(getutxline, getutline);
42 weak_alias(pututxline, pututline);
43 weak_alias(updwtmpx, updwtmp);
OLDNEW
« no previous file with comments | « fusl/src/legacy/ulimit.c ('k') | fusl/src/legacy/valloc.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698