library: build on non-glibc systems

Some non-glibc systems didn't have libio.h or __BEGIN_DECLS
Changes to make it more standard.

References:
 issue #88
This commit is contained in:
Craig Small
2018-04-10 21:28:11 +10:00
parent 58bff862fc
commit 5576c8e438
3 changed files with 4 additions and 4 deletions

View File

@ -20,9 +20,9 @@
#ifndef PROCPS_NUMA_H
#define PROCPS_NUMA_H
#include <features.h>
#include "procps.h"
__BEGIN_DECLS
EXTERN_C_BEGIN
void numa_init (void);
void numa_uninit (void);
@ -30,6 +30,6 @@ void numa_uninit (void);
extern int (*numa_max_node) (void);
extern int (*numa_node_of_cpu) (int);
__END_DECLS
EXTERN_C_END
#endif