mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
![Jonas 'Sortie' Termansen](/assets/img/avatar_default.png)
This work is based in part on code from NetBSD libm, libc and kernel. The library is partly public domain and partly BSD-style licensed.
13 lines
286 B
C
13 lines
286 B
C
/* $NetBSD: llround.c,v 1.2 2004/10/13 15:18:32 drochner Exp $ */
|
|
|
|
/*
|
|
* Written by Matthias Drochner <drochner@NetBSD.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#define LROUNDNAME llround
|
|
#define RESTYPE long long int
|
|
#define RESTYPE_MIN LLONG_MIN
|
|
#define RESTYPE_MAX LLONG_MAX
|
|
|
|
#include "lround.c"
|