1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

Fix for deprecated warnings related to gnu libc sys macros.

The patch only includes sysmacros for linux, the only target with gnu libc to avoid regression issues.
This commit is contained in:
Jose Rubio 2019-09-12 13:10:02 +02:00
parent 0d115796c2
commit 51db5ff378
3 changed files with 15 additions and 0 deletions

View file

@ -90,6 +90,11 @@
#define __VA_START__(p,a) va_start(p)
#endif
#endif
#if defined(__linux__)
#include <sys/sysmacros.h>
#endif
#include "pax.h"
#include "options.h"

View file

@ -90,6 +90,11 @@
#define __VA_START__(p,a) va_start(p)
#endif
#endif
#if defined(__linux__)
#include <sys/sysmacros.h>
#endif
#include "pax.h"
#include "options.h"

View file

@ -90,6 +90,11 @@
#define __VA_START__(p,a) va_start(p)
#endif
#endif
#if defined(__linux__)
#include <sys/sysmacros.h>
#endif
#include <ast.h>
#include <ctype.h>
#include <ls.h>