diff options
author | Ben Huntsman <BHuntsman@mail2.cu-portland.edu> | 2020-05-04 19:53:21 -0700 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2020-05-07 20:36:03 -0400 |
commit | 5802b09e9d8ceadd2cefdccfd0391c04e492369b (patch) | |
tree | 0e8100529a19560216ffa3dd6ac077fe390ced34 /src/cmd/auxstats | |
parent | f84d54a0337f9e101c8baeb51272f33b05b2a0e1 (diff) | |
download | plan9port-5802b09e9d8ceadd2cefdccfd0391c04e492369b.tar.gz plan9port-5802b09e9d8ceadd2cefdccfd0391c04e492369b.tar.bz2 plan9port-5802b09e9d8ceadd2cefdccfd0391c04e492369b.zip |
all: fix #includes for AIX, add a few AIX "implementation" files
Diffstat (limited to 'src/cmd/auxstats')
-rw-r--r-- | src/cmd/auxstats/AIX.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/cmd/auxstats/AIX.c b/src/cmd/auxstats/AIX.c new file mode 100644 index 00000000..33ebdedc --- /dev/null +++ b/src/cmd/auxstats/AIX.c @@ -0,0 +1,9 @@ +#include <u.h> +#include <libc.h> +#include <bio.h> +#include "dat.h" + +void (*statfn[])(int) = +{ + 0 +}; |