X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Finttypes.c;h=c223a2ef12023c79a335e79a27acc4801fb53f87;hp=d815cca26d2d6367e862699d0a983050d7e9bb7c;hb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;hpb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec diff --git a/functions/inttypes.c b/functions/inttypes.c index d815cca..c223a2e 100644 --- a/functions/inttypes.c +++ b/functions/inttypes.c @@ -1,18 +1,9 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- - -// ---------------------------------------------------------------------------- -// C++ - -intmax_t abs( intmax_t i ) { /* TODO */ }; -imaxdiv_t div( intmax_t numer, intmax_t denom ) { /* TODO */ }; - -// ---------------------------------------------------------------------------- -// Standard C +/* ---------------------------------------------------------------------------- + * $Id$ + * ---------------------------------------------------------------------------- + * Public Domain C Library - http://pdclib.sourceforge.net + * This code is Public Domain. Use, modify, and redistribute at will. + * --------------------------------------------------------------------------*/ intmax_t imaxabs( intmax_t i ) { /* TODO */ }; imaxdiv_t imaxdiv( intmax_t numer, intmax_t denom ) { /* TODO */ };