ReactOS
0.4.16-dev-1946-g52006dd
llabs.cpp
Go to the documentation of this file.
1
//
2
// llabs.cpp
3
//
4
// Copyright (c) Microsoft Corporation. All rights reserved.
5
//
6
// Defines llabs(), which computes the absolute value of a number.
7
//
8
#include <stdlib.h>
9
10
11
12
#pragma function(llabs)
13
14
15
16
extern
"C"
long
long
__cdecl
llabs
(
long
long
const
number
)
17
{
18
return
number
>= 0 ?
number
: -
number
;
19
}
__cdecl
#define __cdecl
Definition:
accygwin.h:79
llabs
long long __cdecl llabs(long long const number)
Definition:
llabs.cpp:16
number
static unsigned int number
Definition:
dsound.c:1479
sdk
lib
ucrt
stdlib
llabs.cpp
Generated on Thu Dec 4 2025 06:16:22 for ReactOS by
1.9.6