mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-19 20:08:28 +01:00
vwebp: ensure setenv() is available in stdlib.h
quiets a -Wimplicit-function-declaration with some configurations of gcc (-std=c99). _POSIX_C_SOURCE is preferred over _BSD_SOURCE with newer versions of glibc Change-Id: I378bffb13ba52ff5c4bad1433090dcc387e5d507
This commit is contained in:
parent
9310d19258
commit
bfab894739
@ -14,6 +14,10 @@
|
||||
#include "webp/config.h"
|
||||
#endif
|
||||
|
||||
#if defined(__unix__) || defined(__CYGWIN__)
|
||||
#define _POSIX_C_SOURCE 200112L // for setenv
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
Loading…
Reference in New Issue
Block a user