diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2016-07-19 21:31:55 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2016-07-19 21:31:55 +0000 |
commit | 4fe58b8b37f6b19d2c50441b4df20ca5687fe6ed (patch) | |
tree | 99ff72d0dd74a36a5e20f8cf1225a78361b8b4af /test-mmap.c | |
parent | 0512b80d5f59824b3d18cd1494119fd904528ca5 (diff) | |
download | mandoc-4fe58b8b37f6b19d2c50441b4df20ca5687fe6ed.tar.gz |
Remove the dependency on SQLite without loss of functionality.
Stop supporting systems that don't have mmap(3).
Drop the obsolete names_check() now that we deleted MLINKS.
Diffstat (limited to 'test-mmap.c')
-rw-r--r-- | test-mmap.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test-mmap.c b/test-mmap.c deleted file mode 100644 index 3a6232d9..00000000 --- a/test-mmap.c +++ /dev/null @@ -1,9 +0,0 @@ -#include <sys/types.h> -#include <sys/mman.h> -#include <stddef.h> - -int -main(void) -{ - return mmap(NULL, 1, PROT_READ, MAP_SHARED, -1, 0) != MAP_FAILED; -} |