diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-10-16 03:17:09 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-10-16 06:14:59 +0200 |
commit | 44b601bc79e46722bc0f0862ee0ce34a2284ef11 (patch) | |
tree | c8825b4bdedf50d5b98b2e13a1f6a832f65626d9 /src/shared/strxcpyx.h | |
parent | e0d856dd48d640f3d95efe7b769edec02373cc74 (diff) |
macro: clean up usage of gcc attributes
Always use our own macros, and name all our own macros the same style.
Diffstat (limited to 'src/shared/strxcpyx.h')
-rw-r--r-- | src/shared/strxcpyx.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/shared/strxcpyx.h b/src/shared/strxcpyx.h index 1229a4821d..7be246d570 100644 --- a/src/shared/strxcpyx.h +++ b/src/shared/strxcpyx.h @@ -24,8 +24,10 @@ #include <stdarg.h> #include <stdbool.h> +#include "macro.h" + size_t strpcpy(char **dest, size_t size, const char *src); -size_t strpcpyf(char **dest, size_t size, const char *src, ...) __attribute__((format(printf, 3, 4))); -size_t strpcpyl(char **dest, size_t size, const char *src, ...) __attribute__((sentinel)); +size_t strpcpyf(char **dest, size_t size, const char *src, ...) _printf_(3, 4); +size_t strpcpyl(char **dest, size_t size, const char *src, ...) _sentinel_; size_t strscpy(char *dest, size_t size, const char *src); -size_t strscpyl(char *dest, size_t size, const char *src, ...) __attribute__((sentinel)); +size_t strscpyl(char *dest, size_t size, const char *src, ...) _sentinel_; |