#ifndef _FEATURES_H
#define _FEATURES_H
/* Minimal features.h for AdrOS/newlib */
#ifndef __GLIBC__
#define __GLIBC__ 2
#define __GLIBC_MINOR__ 0
#endif
#ifndef _DEFAULT_SOURCE
#define _DEFAULT_SOURCE 1
#endif
#ifndef _GNU_SOURCE
/* leave undefined unless explicitly requested */
#endif
#endif