mirror of
https://github.com/webmproject/libwebp.git
synced 2025-02-13 07:22:52 +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 (cherry picked from commit bfab894739cd73af8629131a7fd7b79a98e74455)
This commit is contained in:
parent
363a568131
commit
bd63a31aab
@ -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…
x
Reference in New Issue
Block a user