brintos

brintos / llvm-project-archived public Read only

0
0
Text · 285 B · dc1ff22 Raw
12 lines · c
1#pragma once2typedef __SIZE_TYPE__ size_t;3 4void *malloc(size_t);5void free(void*);6 7#ifndef __cplusplus8extern int abs(int __x) __attribute__((__const__));9extern long labs(long __x) __attribute__((__const__));10extern long long llabs(long long __x) __attribute__((__const__));11#endif12