f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow/*
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow * This file and its contents are supplied under the terms of the
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow * Common Development and Distribution License ("CDDL"), version 1.0.
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow * You may only use this file in accordance with the terms of version
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow * 1.0 of the CDDL.
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow *
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow * A full copy of the text of the CDDL should have accompanied this
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow * source. A copy of the CDDL is also available via the Internet at
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow * http://www.illumos.org/license/CDDL.
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow */
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow/*
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow * Copyright (c) 2012, Joyent, Inc. All rights reserved.
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow */
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow/*
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow * ASSERTION:
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow * The largest base we will accept is Base 36 -- i.e. using all of 0-9 and
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow * A-Z as numerals.
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow *
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow * SECTION: Actions and Subroutines/strtoll()
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow */
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow#pragma D option quiet
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. ClulowBEGIN
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow{
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow printf("%d\n", strtoll("0", 37));
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow exit(0);
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow}
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. ClulowERROR
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow{
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow exit(1);
f497f9fe231e0e400f339c84a7d80c4aae2ac4d5Joshua M. Clulow}