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

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

intmax_t
strtoimax (const char * nptr, char **endptr, int base)
{
  return strtoll (nptr, endptr, base);
}
