i3lock-color

The world's most popular non-default computer lockscreen.
Index Commits Files Refs README LICENSE
commit 594b5c6770ad12854e8f1f2abd5bf6936bb3be4b
parent d0a6cfda92a1939ff6db91679e6c63f4067d4f3a
Author: Cassandra <cassandra@techfo.xyz>
Date:   Wed, 27 Jun 2018 20:29:08 -0700

Merge pull request #98 from maxice8/fix-musl

jpg.h: add include for sys/types.h and define _GNU_SOURCE.
Diffstat:
Mjpg.h | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/jpg.h b/jpg.h
@@ -1,6 +1,9 @@
 #ifndef _JPG_H
 #define _JPG_H
 
+#include <sys/types.h>
+
+#define _GNU_SOURCE 1
 typedef struct {
     uint height;
     uint width;