diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2018-07-03 12:33:09 +0300 |
---|---|---|
committer | rl1987 <rl1987@sdf.lonestar.org> | 2018-07-03 12:33:09 +0300 |
commit | fedb3e46ec39e2e980eb1ae25138e9e0b310d084 (patch) | |
tree | 67afd8e9fb365c4ca4bc8fd62ba0a3f60ac2ac39 /src/lib/fs | |
parent | a9628c0c0b2cc5c0286c4e49591b3b18dc054e87 (diff) | |
download | tor-fedb3e46ec39e2e980eb1ae25138e9e0b310d084.tar.gz tor-fedb3e46ec39e2e980eb1ae25138e9e0b310d084.zip |
Remove ATTR_NONNULL macro
Diffstat (limited to 'src/lib/fs')
-rw-r--r-- | src/lib/fs/mmap.h | 4 |
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 |