/****************************************************************************
 *
 * $Source: /usr/local/cvsroot/gccsdk/unixlib/source/inttypes/strtoumax.c,v $
 * $Date: 2005/04/20 17:12:10 $
 * $Revision: 1.1 $
 * $State: Exp $
 * $Author: nick $
 *
 ***************************************************************************/

#include <inttypes.h>
#include <stdlib.h>

uintmax_t
strtoumax (const char *nptr, char **endptr, int base)
{
  return strtoull (nptr, endptr, base);
}
