codekingpro's picture
Add files using upload-large-folder tool
90219c5 verified
Raw
History Blame Contribute Delete
330 Bytes
//
// llabs.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Defines llabs(), which computes the absolute value of a number.
//
#include <stdlib.h>
#pragma function(llabs)
extern "C" long long __cdecl llabs(long long const number)
{
return number >= 0 ? number : -number;
}