summaryrefslogtreecommitdiff
path: root/arch/powerpc/bits
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2016-01-27 21:40:47 -0500
committerRich Felker <dalias@aerifal.cx>2016-01-27 21:52:14 -0500
commit4dfac11538cb20c848c30d754863800061ee8c81 (patch)
treed6af835357ba9d9dc9960d8be76106284d6a8c77 /arch/powerpc/bits
parentefdf04cf877574b4e3905802e0039f844077f58f (diff)
downloadmusl-4dfac11538cb20c848c30d754863800061ee8c81.tar.gz
deduplicate the bulk of the arch bits headers
all bits headers that were identical for a number of 'clean' archs are moved to the new arch/generic tree. in addition, a few headers that differed only cosmetically from the new generic version are removed. additional deduplication may be possible in mman.h and in several headers (limits.h, posix.h, stdint.h) that mostly depend on whether the arch is 32- or 64-bit, but they are left alone for now because greater gains are likely possible with more invasive changes to header logic, which is beyond the scope of this commit.
Diffstat (limited to 'arch/powerpc/bits')
-rw-r--r--arch/powerpc/bits/io.h0
-rw-r--r--arch/powerpc/bits/poll.h0
-rw-r--r--arch/powerpc/bits/resource.h0
-rw-r--r--arch/powerpc/bits/statfs.h7
-rw-r--r--arch/powerpc/bits/stdarg.h4
5 files changed, 0 insertions, 11 deletions
diff --git a/arch/powerpc/bits/io.h b/arch/powerpc/bits/io.h
deleted file mode 100644
index e69de29b..00000000
--- a/arch/powerpc/bits/io.h
+++ /dev/null
diff --git a/arch/powerpc/bits/poll.h b/arch/powerpc/bits/poll.h
deleted file mode 100644
index e69de29b..00000000
--- a/arch/powerpc/bits/poll.h
+++ /dev/null
diff --git a/arch/powerpc/bits/resource.h b/arch/powerpc/bits/resource.h
deleted file mode 100644
index e69de29b..00000000
--- a/arch/powerpc/bits/resource.h
+++ /dev/null
diff --git a/arch/powerpc/bits/statfs.h b/arch/powerpc/bits/statfs.h
deleted file mode 100644
index f103f4e4..00000000
--- a/arch/powerpc/bits/statfs.h
+++ /dev/null
@@ -1,7 +0,0 @@
-struct statfs {
- unsigned long f_type, f_bsize;
- fsblkcnt_t f_blocks, f_bfree, f_bavail;
- fsfilcnt_t f_files, f_ffree;
- fsid_t f_fsid;
- unsigned long f_namelen, f_frsize, f_flags, f_spare[4];
-};
diff --git a/arch/powerpc/bits/stdarg.h b/arch/powerpc/bits/stdarg.h
deleted file mode 100644
index fde37814..00000000
--- a/arch/powerpc/bits/stdarg.h
+++ /dev/null
@@ -1,4 +0,0 @@
-#define va_start(v,l) __builtin_va_start(v,l)
-#define va_end(v) __builtin_va_end(v)
-#define va_arg(v,l) __builtin_va_arg(v,l)
-#define va_copy(d,s) __builtin_va_copy(d,s)