Browse Source
Merge pull request #98 from maxice8/fix-musl
jpg.h: add include for sys/types.h and define _GNU_SOURCE.
master
Cassandra
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
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; |
|
|
|