1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

New fucntions strconcat and xstrconcat.

This commit is contained in:
Werner Koch 2009-08-25 20:19:37 +00:00
parent fa4a237b6c
commit 24e5a68f9e
5 changed files with 260 additions and 2 deletions

View file

@ -99,4 +99,16 @@
# endif
#endif
/* Some GCC attributes. Note that we use also define some in
mischelp.h, but this header and types.h are not always included.
Should eventually be put into one file (e.g. nlib-common.h). */
#if __GNUC__ >= 4
# define GNUPG_GCC_A_SENTINEL(a) __attribute__ ((sentinel(a)))
#else
# define GNUPG_GCC_A_SENTINEL(a)
#endif
#endif /*LIBJNLIB_TYPES_H*/