diff options
author | Mattias Andrée <maandree@kth.se> | 2024-08-18 10:29:56 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-08-18 10:29:56 +0200 |
commit | 154f31376f595a9854981305ab735e27e2237889 (patch) | |
tree | 9ffab86976c294fa92eecbe0edf1550bd38df2b9 | |
parent | Merge branch 'since' (diff) | |
download | libsimple-154f31376f595a9854981305ab735e27e2237889.tar.gz libsimple-154f31376f595a9854981305ab735e27e2237889.tar.bz2 libsimple-154f31376f595a9854981305ab735e27e2237889.tar.xz |
Add @since for new definitions
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | libsimple/stack.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libsimple/stack.h b/libsimple/stack.h index 0562e7f..a7b1294 100644 --- a/libsimple/stack.h +++ b/libsimple/stack.h @@ -1,11 +1,11 @@ /* See LICENSE file for copyright and license details. */ -int libsimple_get_stack_space(uintptr_t *restrict, uintptr_t *restrict); /* TODO man, doc */ -int libsimple_get_stack_limit(size_t *restrict, size_t *restrict); /* TODO man, doc */ -int libsimple_get_stack_direction(void); /* TODO man, doc */ +int libsimple_get_stack_space(uintptr_t *restrict, uintptr_t *restrict); /* TODO man, doc (since 1.7) */ +int libsimple_get_stack_limit(size_t *restrict, size_t *restrict); /* TODO man, doc (since 1.7) */ +int libsimple_get_stack_direction(void); /* TODO man, doc (since 1.7) */ -int libsimple_needstack(size_t); /* TODO man, doc */ +int libsimple_needstack(size_t); /* TODO man, doc (since 1.7) */ #ifndef needstack # define needstack libsimple_needstack #endif |