URI: 
       Don't warn about overlength strings in test data - libgrapheme - unicode string library
  HTML git clone git://git.suckless.org/libgrapheme
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit f01674957f6816d55b8ed1b38a96c4ef5e3120b2
   DIR parent d56ad5ac8ac47037a86d52e3445e3c5d4dc81a4b
  HTML Author: Laslo Hunhold <dev@frign.de>
       Date:   Sun,  1 Sep 2024 14:57:28 +0200
       
       Don't warn about overlength strings in test data
       
       Signed-off-by: Laslo Hunhold <dev@frign.de>
       
       Diffstat:
         M config.mk                           |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/config.mk b/config.mk
       @@ -15,7 +15,7 @@ BINSUFFIX =
        
        # flags
        CPPFLAGS = -D_ISOC99_SOURCE
       -CFLAGS   = -std=c99 -Os -Wall -Wextra -Wpedantic
       +CFLAGS   = -std=c99 -Os -Wall -Wextra -Wpedantic -Wno-overlength-strings
        LDFLAGS  = -s
        
        BUILD_CPPFLAGS = $(CPPFLAGS)