Created
January 13, 2017 21:57
-
-
Save rmacqueen/174a815832723c2d4336675b5794a4a0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <glib.h> | |
#include <stdint.h> | |
int | |
main (int argc, char *argv[]) | |
{ | |
unsigned int limit = g_ascii_strtod ("-1", NULL); | |
fprintf (stderr, "limit := %u\n", limit); | |
return EXIT_SUCCESS; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment