File: stdlib.h

package info (click to toggle)
shim 15.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 15,124 kB
  • sloc: ansic: 168,639; asm: 1,714; sh: 1,294; makefile: 1,151; python: 284
file content (28 lines) | stat: -rw-r--r-- 620 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// SPDX-License-Identifier: BSD-2-Clause-Patent
#ifdef SHIM_UNIT_TEST
#include_next <stdlib.h>
#else
#ifndef _STDLIB_H
#define _STDLIB_H

/*
 * I don't know why, but openssl expects to get size_t from stdlib.h
 * instead of stddef.h, so... whatever.
 */
#include <stddef.h>

static inline void abort(void) { }

#include <builtins_begin_.h>
mkbi1_(int, abs, int, j)
mkbi1_(long int, labs, long int, j)
mkbi1_(long long int, llabs, long long int, j)

#ifdef _INTTYPES_H
mkbi1_(intmax_t, imaxabs, intmax_t, j)
#endif /* _INTTYPES_H */
#include <builtins_end_.h>

#endif /* !_STDLIB_H */
#endif
// vim:fenc=utf-8:tw=75:noet