codekingpro's picture
Add files using upload-large-folder tool
90219c5 verified
Raw
History Blame Contribute Delete
467 Bytes
//
// imaxabs.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Defines imaxabs(), which computes the absolute value of an intmax_t.
//
#include <inttypes.h>
extern "C" intmax_t __cdecl imaxabs(intmax_t const number)
{
return number < 0 ? -number : number;
}
/*
* Copyright (c) 1992-2010 by P.J. Plauger. ALL RIGHTS RESERVED.
* Consult your license regarding permissions and restrictions.
V5.30:0009 */