# 1 "main.c" # 1 "d:\\dev-cpp\\include\\stdio.h" 1 # 1 "d:\\dev-cpp\\include\\_mingw.h" 1 # 59 "d:\\dev-cpp\\include\\_mingw.h" # 19 "d:\\dev-cpp\\include\\stdio.h" 2 # 1 "d:\\dev-cpp\\include\\stddef.h" 1 # 26 "d:\\dev-cpp\\include\\stdio.h" 2 # 1 "d:\\dev-cpp\\include\\stdarg.h" 1 # 28 "d:\\dev-cpp\\include\\stdio.h" 2 typedef struct _iobuf { char* _ptr; int _cnt; char* _base; int _flag; int _file; int _charbuf; int _bufsiz; char* _tmpfname; } FILE; extern __attribute__ ((dllimport)) FILE _iob[]; FILE* __attribute__((__cdecl__)) fopen (const char*, const char*); FILE* __attribute__((__cdecl__)) freopen (const char*, const char*, FILE*); int __attribute__((__cdecl__)) fflush (FILE*); int __attribute__((__cdecl__)) fclose (FILE*); int __attribute__((__cdecl__)) remove (const char*); int __attribute__((__cdecl__)) rename (const char*, const char*); FILE* __attribute__((__cdecl__)) tmpfile (void); char* __attribute__((__cdecl__)) tmpnam (char*); char* __attribute__((__cdecl__)) _tempnam (const char*, const char*); int __attribute__((__cdecl__)) _rmtmp(void); char* __attribute__((__cdecl__)) tempnam (const char*, const char*); int __attribute__((__cdecl__)) rmtmp(void); int __attribute__((__cdecl__)) setvbuf (FILE*, char*, int, size_t); void __attribute__((__cdecl__)) setbuf (FILE*, char*); int __attribute__((__cdecl__)) fprintf (FILE*, const char*, ...); int __attribute__((__cdecl__)) printf (const char*, ...); int __attribute__((__cdecl__)) sprintf (char*, const char*, ...); int __attribute__((__cdecl__)) _snprintf (char*, size_t, const char*, ...); int __attribute__((__cdecl__)) vfprintf (FILE*, const char*, __gnuc_va_list ); int __attribute__((__cdecl__)) vprintf (const char*, __gnuc_va_list ); int __attribute__((__cdecl__)) vsprintf (char*, const char*, __gnuc_va_list ); int __attribute__((__cdecl__)) _vsnprintf (char*, size_t, const char*, __gnuc_va_list ); int __attribute__((__cdecl__)) snprintf(char* s, size_t n, const char* format, ...); extern __inline__ int __attribute__((__cdecl__)) vsnprintf (char* s, size_t n, const char* format, __gnuc_va_list arg) { return _vsnprintf ( s, n, format, arg); } int __attribute__((__cdecl__)) vscanf (const char * __restrict__, __gnuc_va_list ); int __attribute__((__cdecl__)) vfscanf (FILE * __restrict__, const char * __restrict__, __gnuc_va_list ); int __attribute__((__cdecl__)) vsscanf (const char * __restrict__, const char * __restrict__, __gnuc_va_list ); int __attribute__((__cdecl__)) fscanf (FILE*, const char*, ...); int __attribute__((__cdecl__)) scanf (const char*, ...); int __attribute__((__cdecl__)) sscanf (const char*, const char*, ...); int __attribute__((__cdecl__)) fgetc (FILE*); char* __attribute__((__cdecl__)) fgets (char*, int, FILE*); int __attribute__((__cdecl__)) fputc (int, FILE*); int __attribute__((__cdecl__)) fputs (const char*, FILE*); char* __attribute__((__cdecl__)) gets (char*); int __attribute__((__cdecl__)) puts (const char*); int __attribute__((__cdecl__)) ungetc (int, FILE*); int __attribute__((__cdecl__)) _filbuf (FILE*); int __attribute__((__cdecl__)) _flsbuf (int, FILE*); extern __inline__ int __attribute__((__cdecl__)) getc (FILE* __F) { return (--__F->_cnt >= 0) ? (int) (unsigned char) *__F->_ptr++ : _filbuf (__F); } extern __inline__ int __attribute__((__cdecl__)) putc (int __c, FILE* __F) { return (--__F->_cnt >= 0) ? (int) (unsigned char) (*__F->_ptr++ = (char)__c) : _flsbuf (__c, __F); } extern __inline__ int __attribute__((__cdecl__)) getchar (void) { return (-- (&_iob[0 ]) ->_cnt >= 0) ? (int) (unsigned char) * (&_iob[0 ]) ->_ptr++ : _filbuf ((&_iob[0 ]) ); } extern __inline__ int __attribute__((__cdecl__)) putchar(int __c) { return (-- (&_iob[1 ]) ->_cnt >= 0) ? (int) (unsigned char) (* (&_iob[1 ]) ->_ptr++ = (char)__c) : _flsbuf (__c, (&_iob[1 ]) );} size_t __attribute__((__cdecl__)) fread (void*, size_t, size_t, FILE*); size_t __attribute__((__cdecl__)) fwrite (const void*, size_t, size_t, FILE*); int __attribute__((__cdecl__)) fseek (FILE*, long, int); long __attribute__((__cdecl__)) ftell (FILE*); void __attribute__((__cdecl__)) rewind (FILE*); # 318 "d:\\dev-cpp\\include\\stdio.h" typedef long fpos_t; int __attribute__((__cdecl__)) fgetpos (FILE*, fpos_t*); int __attribute__((__cdecl__)) fsetpos (FILE*, const fpos_t*); int __attribute__((__cdecl__)) feof (FILE*); int __attribute__((__cdecl__)) ferror (FILE*); void __attribute__((__cdecl__)) clearerr (FILE*); void __attribute__((__cdecl__)) perror (const char*); FILE* __attribute__((__cdecl__)) _popen (const char*, const char*); int __attribute__((__cdecl__)) _pclose (FILE*); FILE* __attribute__((__cdecl__)) popen (const char*, const char*); int __attribute__((__cdecl__)) pclose (FILE*); int __attribute__((__cdecl__)) _flushall (void); int __attribute__((__cdecl__)) _fgetchar (void); int __attribute__((__cdecl__)) _fputchar (int); FILE* __attribute__((__cdecl__)) _fdopen (int, const char*); int __attribute__((__cdecl__)) _fileno (FILE*); int __attribute__((__cdecl__)) _fcloseall(void); FILE* __attribute__((__cdecl__)) _fsopen(const char*, const char*, int); int __attribute__((__cdecl__)) fgetchar (void); int __attribute__((__cdecl__)) fputchar (int); FILE* __attribute__((__cdecl__)) fdopen (int, const char*); int __attribute__((__cdecl__)) fileno (FILE*); # 420 "d:\\dev-cpp\\include\\stdio.h" int __attribute__((__cdecl__)) fwprintf (FILE*, const wchar_t*, ...); int __attribute__((__cdecl__)) wprintf (const wchar_t*, ...); int __attribute__((__cdecl__)) swprintf (wchar_t*, const wchar_t*, ...); int __attribute__((__cdecl__)) _snwprintf (wchar_t*, size_t, const wchar_t*, ...); int __attribute__((__cdecl__)) vfwprintf (FILE*, const wchar_t*, __gnuc_va_list ); int __attribute__((__cdecl__)) vwprintf (const wchar_t*, __gnuc_va_list ); int __attribute__((__cdecl__)) vswprintf (wchar_t*, const wchar_t*, __gnuc_va_list ); int __attribute__((__cdecl__)) _vsnwprintf (wchar_t*, size_t, const wchar_t*, __gnuc_va_list ); int __attribute__((__cdecl__)) fwscanf (FILE*, const wchar_t*, ...); int __attribute__((__cdecl__)) wscanf (const wchar_t*, ...); int __attribute__((__cdecl__)) swscanf (const wchar_t*, const wchar_t*, ...); wint_t __attribute__((__cdecl__)) fgetwc (FILE*); wint_t __attribute__((__cdecl__)) fputwc (wchar_t, FILE*); wint_t __attribute__((__cdecl__)) ungetwc (wchar_t, FILE*); # 462 "d:\\dev-cpp\\include\\stdio.h" int __attribute__((__cdecl__)) snwprintf (wchar_t* s, size_t n, const wchar_t* format, ...); extern __inline__ int __attribute__((__cdecl__)) vsnwprintf (wchar_t* s, size_t n, const wchar_t* format, __gnuc_va_list arg) { return _vsnwprintf ( s, n, format, arg);} int __attribute__((__cdecl__)) vwscanf (const wchar_t * __restrict__, __gnuc_va_list ); int __attribute__((__cdecl__)) vfwscanf (FILE * __restrict__, const wchar_t * __restrict__, __gnuc_va_list ); int __attribute__((__cdecl__)) vswscanf (const wchar_t * __restrict__, const wchar_t * __restrict__, __gnuc_va_list ); wint_t __attribute__((__cdecl__)) _fgetwchar (void); wint_t __attribute__((__cdecl__)) _fputwchar (wint_t); int __attribute__((__cdecl__)) _getw (FILE*); int __attribute__((__cdecl__)) _putw (int, FILE*); wint_t __attribute__((__cdecl__)) fgetwchar (void); wint_t __attribute__((__cdecl__)) fputwchar (wint_t); int __attribute__((__cdecl__)) getw (FILE*); int __attribute__((__cdecl__)) putw (int, FILE*); # 1 "main.c" 2 # 1 "d:\\dev-cpp\\include\\stdlib.h" 1 # 1 "d:\\dev-cpp\\include\\stddef.h" 1 # 22 "d:\\dev-cpp\\include\\stdlib.h" 2 extern int _argc; extern char** _argv; # 86 "d:\\dev-cpp\\include\\stdlib.h" extern __attribute__ ((dllimport)) int __argc_dll; extern __attribute__ ((dllimport)) char** __argv_dll; extern __attribute__ ((dllimport)) int __mb_cur_max_dll; # 127 "d:\\dev-cpp\\include\\stdlib.h" int* __attribute__((__cdecl__)) _errno(void); int* __attribute__((__cdecl__)) __doserrno(void); extern __attribute__ ((dllimport)) char ** _environ_dll; # 179 "d:\\dev-cpp\\include\\stdlib.h" extern __attribute__ ((dllimport)) int _sys_nerr_dll; extern __attribute__ ((dllimport)) char* _sys_errlist[]; # 227 "d:\\dev-cpp\\include\\stdlib.h" # 242 "d:\\dev-cpp\\include\\stdlib.h" extern __attribute__ ((dllimport)) unsigned int _osver_dll; extern __attribute__ ((dllimport)) unsigned int _winver_dll; extern __attribute__ ((dllimport)) unsigned int _winmajor_dll; extern __attribute__ ((dllimport)) unsigned int _winminor_dll; extern __attribute__ ((dllimport)) char* _pgmptr_dll; # 291 "d:\\dev-cpp\\include\\stdlib.h" extern __attribute__ ((dllimport)) int _fmode_dll; double __attribute__((__cdecl__)) atof (const char*); int __attribute__((__cdecl__)) atoi (const char*); long __attribute__((__cdecl__)) atol (const char*); int __attribute__((__cdecl__)) _wtoi (const wchar_t *); long __attribute__((__cdecl__)) _wtol (const wchar_t *); double __attribute__((__cdecl__)) strtod (const char*, char**); extern __inline__ float __attribute__((__cdecl__)) strtof (const char *nptr, char **endptr) { return (strtod (nptr, endptr));} long double __attribute__((__cdecl__)) strtold (const char * __restrict__, char ** __restrict__); long __attribute__((__cdecl__)) strtol (const char*, char**, int); unsigned long __attribute__((__cdecl__)) strtoul (const char*, char**, int); double __attribute__((__cdecl__)) wcstod (const wchar_t*, wchar_t**); extern __inline__ float __attribute__((__cdecl__)) wcstof( const wchar_t *nptr, wchar_t **endptr) { return (wcstod(nptr, endptr)); } long double __attribute__((__cdecl__)) wcstold (const wchar_t * __restrict__, wchar_t ** __restrict__); long __attribute__((__cdecl__)) wcstol (const wchar_t*, wchar_t**, int); unsigned long __attribute__((__cdecl__)) wcstoul (const wchar_t*, wchar_t**, int); size_t __attribute__((__cdecl__)) wcstombs (char*, const wchar_t*, size_t); int __attribute__((__cdecl__)) wctomb (char*, wchar_t); int __attribute__((__cdecl__)) mblen (const char*, size_t); size_t __attribute__((__cdecl__)) mbstowcs (wchar_t*, const char*, size_t); int __attribute__((__cdecl__)) mbtowc (wchar_t*, const char*, size_t); int __attribute__((__cdecl__)) rand (void); void __attribute__((__cdecl__)) srand (unsigned int); void* __attribute__((__cdecl__)) calloc (size_t, size_t) ; void* __attribute__((__cdecl__)) malloc (size_t) ; void* __attribute__((__cdecl__)) realloc (void*, size_t); void __attribute__((__cdecl__)) free (void*); void __attribute__((__cdecl__)) abort (void) __attribute__ ((__noreturn__)) ; void __attribute__((__cdecl__)) exit (int) __attribute__ ((__noreturn__)) ; int __attribute__((__cdecl__)) atexit (void (*)(void)); int __attribute__((__cdecl__)) system (const char*); char* __attribute__((__cdecl__)) getenv (const char*); void* __attribute__((__cdecl__)) bsearch (const void*, const void*, size_t, size_t, int (*)(const void*, const void*)); void __attribute__((__cdecl__)) qsort (void*, size_t, size_t, int (*)(const void*, const void*)); int __attribute__((__cdecl__)) abs (int) __attribute__ ((__const__)) ; long __attribute__((__cdecl__)) labs (long) __attribute__ ((__const__)) ; typedef struct { int quot, rem; } div_t; typedef struct { long quot, rem; } ldiv_t; div_t __attribute__((__cdecl__)) div (int, int) __attribute__ ((__const__)) ; ldiv_t __attribute__((__cdecl__)) ldiv (long, long) __attribute__ ((__const__)) ; void __attribute__((__cdecl__)) _beep (unsigned int, unsigned int); void __attribute__((__cdecl__)) _seterrormode (int); void __attribute__((__cdecl__)) _sleep (unsigned long); void __attribute__((__cdecl__)) _exit (int) __attribute__ ((__noreturn__)) ; typedef int (* _onexit_t)(void); _onexit_t __attribute__((__cdecl__)) _onexit( _onexit_t ); int __attribute__((__cdecl__)) _putenv (const char*); void __attribute__((__cdecl__)) _searchenv (const char*, const char*, char*); char* __attribute__((__cdecl__)) _ecvt (double, int, int*, int*); char* __attribute__((__cdecl__)) _fcvt (double, int, int*, int*); char* __attribute__((__cdecl__)) _gcvt (double, int, char*); void __attribute__((__cdecl__)) _makepath (char*, const char*, const char*, const char*, const char*); void __attribute__((__cdecl__)) _splitpath (const char*, char*, char*, char*, char*); char* __attribute__((__cdecl__)) _fullpath (char*, const char*, size_t); char* __attribute__((__cdecl__)) _itoa (int, char*, int); char* __attribute__((__cdecl__)) _ltoa (long, char*, int); char* __attribute__((__cdecl__)) _ultoa(unsigned long, char*, int); wchar_t* __attribute__((__cdecl__)) _itow (int, wchar_t*, int); wchar_t* __attribute__((__cdecl__)) _ltow (long, wchar_t*, int); wchar_t* __attribute__((__cdecl__)) _ultow (unsigned long, wchar_t*, int); # 437 "d:\\dev-cpp\\include\\stdlib.h" int __attribute__((__cdecl__)) putenv (const char*); void __attribute__((__cdecl__)) searchenv (const char*, const char*, char*); char* __attribute__((__cdecl__)) itoa (int, char*, int); char* __attribute__((__cdecl__)) ltoa (long, char*, int); char* __attribute__((__cdecl__)) ecvt (double, int, int*, int*); char* __attribute__((__cdecl__)) fcvt (double, int, int*, int*); char* __attribute__((__cdecl__)) gcvt (double, int, char*); void __attribute__((__cdecl__)) _Exit(int) __attribute__ ((__noreturn__)) ; extern __inline__ void __attribute__((__cdecl__)) _Exit(int status) { _exit(status); } typedef struct { long long quot, rem; } lldiv_t; lldiv_t __attribute__((__cdecl__)) lldiv (long long, long long) __attribute__ ((__const__)) ; extern __inline__ long long __attribute__((__cdecl__)) llabs(long long _j) {return (_j >= 0 ? _j : -_j);} long long __attribute__((__cdecl__)) strtoll (const char* __restrict__, char** __restrict, int); unsigned long long __attribute__((__cdecl__)) strtoull (const char* __restrict__, char** __restrict__, int); # 502 "d:\\dev-cpp\\include\\stdlib.h" # 2 "main.c" 2 int main(int argc, char *argv[]) { system("PAUSE"); return 0; }