diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2024-03-15 20:42:42 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2024-03-15 20:42:42 +0100 |
| commit | 8b094e8af3215bed1c3c3c662e4b93163dac6bbc (patch) | |
| tree | 4bfe94e43074e774cfe71186a467fabcd328406e /src/flstring.h | |
| parent | b3e1df35848003952369f8cbf05cdd41ae62d839 (diff) | |
Fix a bunch of compiler warnings, particularly for old compilers
Works now much better with old C99 and C++98 standard compilers.
Fixed: C++ comments in C files and headers included by C files.
There are still some warnings with C90 though but these would be
hard to fix and left as-is for now.
test/fractals.cxx: some arrays were too small by 1, or the compiler
warned at least (false positive?). Anyway, it's fixed now.
Diffstat (limited to 'src/flstring.h')
| -rw-r--r-- | src/flstring.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flstring.h b/src/flstring.h index e4c7ea491..04199d13e 100644 --- a/src/flstring.h +++ b/src/flstring.h @@ -82,8 +82,8 @@ FL_EXPORT extern size_t fl_strlcat(char *, const char *, size_t); # define strlcat fl_strlcat # endif /* !HAVE_STRLCAT */ -// promoted to <FL/fl_string_functions.h> -//FL_EXPORT extern size_t fl_strlcpy(char *, const char *, size_t); +/* promoted to <FL/fl_string_functions.h> */ +/* FL_EXPORT extern size_t fl_strlcpy(char *, const char *, size_t); */ # ifndef HAVE_STRLCPY # define strlcpy fl_strlcpy # endif /* !HAVE_STRLCPY */ |
