mirror of
https://github.com/systemd/systemd.git
synced 2026-07-17 04:50:47 +00:00
14 lines
210 B
C
14 lines
210 B
C
/*
|
|
* bits64/stddef.h
|
|
*/
|
|
|
|
#ifndef _BITSIZE_STDDEF_H
|
|
#define _BITSIZE_STDDEF_H
|
|
|
|
#define _SIZE_T
|
|
typedef unsigned long size_t;
|
|
#define _PTRDIFF_T
|
|
typedef signed long ptrdiff_t;
|
|
|
|
#endif /* _BITSIZE_STDDEF_H */
|