blob: 5273c66646fda5c745785c52e4667ad128ad7ae3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* SPDX-License-Identifier: LGPL-2.1-only */
/*
* The Rin Library – floating point module
*
* Copyright (C) 2015 Gediminas Jakutis
*/
#ifndef LIBRIN_FLOAT_PRIVATE_INCLUDED
#define LIBRIN_FLOAT_PRIVATE_INCLUDED
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <stdio.h>
#endif /* LIBRIN_FLOAT_PRIVATE_INCLUDED */
|