mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-12 14:00:19 -04:00
11 lines
317 B
C
11 lines
317 B
C
#include "config.h"
|
|
@include "@real_header@"
|
|
@ifndef _COMPAT_STDLIB_H_
|
|
@define _COMPAT_STDLIB_H_
|
|
#if CH_HPUX___STRTOLL > 0
|
|
@include <inttypes.h>
|
|
@define strtoll(nptr, endptr, base) __strtoll(nptr, endptr, base)
|
|
@define strtoull(nptr, endptr, base) __strtoull(nptr, endptr, base)
|
|
#endif
|
|
@endif /* _COMPAT_STDLIB_H_ */
|