diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-06 13:45:31 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:27 -0400 |
commit | cb229f614f937515b78e40701f36c26c7def01b7 (patch) | |
tree | 1ba6a496c06b80397ddf7ec228ded6270d3aae4e /src/sched | |
parent | 6fcd60ddd903df13402704fe6026cb1f8e780fd7 (diff) | |
download | musl-cb229f614f937515b78e40701f36c26c7def01b7.tar.gz |
move and deduplicate declarations of __vdsosym to make it checkable
Diffstat (limited to 'src/sched')
-rw-r--r-- | src/sched/sched_getcpu.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/sched/sched_getcpu.c b/src/sched/sched_getcpu.c index e08cfdf1..4ec5eaf6 100644 --- a/src/sched/sched_getcpu.c +++ b/src/sched/sched_getcpu.c @@ -6,8 +6,6 @@ #ifdef VDSO_GETCPU_SYM -void *__vdsosym(const char *, const char *); - static void *volatile vdso_func; typedef long (*getcpu_f)(unsigned *, unsigned *, void *); |