drop the __bounded__ attribute

breaks the build with -Werror depending on the compiler.
This commit is contained in:
Omar Polo 2023-08-07 17:54:34 +00:00
parent 36363b011c
commit 9e6fc13b35
1 changed files with 3 additions and 6 deletions

View File

@ -76,13 +76,10 @@
char *vis(char *, int, int, int);
int strvis(char *, const char *, int);
int stravis(char **, const char *, int);
int strnvis(char *, const char *, size_t, int)
__attribute__ ((__bounded__(__string__,1,3)));
int strvisx(char *, const char *, size_t, int)
__attribute__ ((__bounded__(__string__,1,3)));
int strnvis(char *, const char *, size_t, int);
int strvisx(char *, const char *, size_t, int);
int strunvis(char *, const char *);
int unvis(char *, char, int *, int);
ssize_t strnunvis(char *, const char *, size_t)
__attribute__ ((__bounded__(__string__,1,3)));
ssize_t strnunvis(char *, const char *, size_t);
#endif /* !_VIS_H_ */