blob: d026ca5258f0be5832018ff9e1fc843db9a212de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef __libgxx_sys_times_h
extern "C"
{
#ifdef __sys_times_h_recursive
#include_next <sys/times.h>
#else
#define __sys_times_h_recursive
#include_next <sys/times.h>
#define __libgxx_sys_times_h 1
#include <_G_config.h>
extern _G_clock_t times _G_ARGS((struct tms*));
#endif
}
#endif
|