aboutsummaryrefslogtreecommitdiff
path: root/src/lib/fs
diff options
context:
space:
mode:
authorrl1987 <rl1987@sdf.lonestar.org>2018-07-03 12:33:09 +0300
committerrl1987 <rl1987@sdf.lonestar.org>2018-07-03 12:33:09 +0300
commitfedb3e46ec39e2e980eb1ae25138e9e0b310d084 (patch)
tree67afd8e9fb365c4ca4bc8fd62ba0a3f60ac2ac39 /src/lib/fs
parenta9628c0c0b2cc5c0286c4e49591b3b18dc054e87 (diff)
downloadtor-fedb3e46ec39e2e980eb1ae25138e9e0b310d084.tar.gz
tor-fedb3e46ec39e2e980eb1ae25138e9e0b310d084.zip
Remove ATTR_NONNULL macro
Diffstat (limited to 'src/lib/fs')
-rw-r--r--src/lib/fs/mmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/fs/mmap.h b/src/lib/fs/mmap.h
index 125f368802..8d6ca9a0e2 100644
--- a/src/lib/fs/mmap.h
+++ b/src/lib/fs/mmap.h
@@ -35,7 +35,7 @@ typedef struct tor_mmap_t {
} tor_mmap_t;
-tor_mmap_t *tor_mmap_file(const char *filename) ATTR_NONNULL((1));
-int tor_munmap_file(tor_mmap_t *handle) ATTR_NONNULL((1));
+tor_mmap_t *tor_mmap_file(const char *filename);
+int tor_munmap_file(tor_mmap_t *handle);
#endif