GDBserver
|
Go to the source code of this file.
Macros | |
#define | _GL_ALREADY_INCLUDING_STDIO_H |
#define | _GL_STDIO_H |
#define | _GL_STDIO_INLINE _GL_INLINE |
#define | _GL_ATTRIBUTE_FORMAT(spec) /* empty */ |
#define | _GL_ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) _GL_ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument)) |
#define | _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM(formatstring_parameter, first_argument) _GL_ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument)) |
#define | _GL_ATTRIBUTE_FORMAT_SCANF(formatstring_parameter, first_argument) _GL_ATTRIBUTE_FORMAT ((__scanf__, formatstring_parameter, first_argument)) |
#define | _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM(formatstring_parameter, first_argument) _GL_ATTRIBUTE_FORMAT ((__scanf__, formatstring_parameter, first_argument)) |
#define | _GL_CXXDEFS_H |
#define | _GL_EXTERN_C extern |
#define | _GL_FUNCDECL_RPL(func, rettype, parameters_and_attributes) _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes) |
#define | _GL_FUNCDECL_RPL_1(rpl_func, rettype, parameters_and_attributes) _GL_EXTERN_C rettype rpl_func parameters_and_attributes |
#define | _GL_FUNCDECL_SYS(func, rettype, parameters_and_attributes) _GL_EXTERN_C rettype func parameters_and_attributes |
#define | _GL_CXXALIAS_RPL(func, rettype, parameters) _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters) |
#define | _GL_CXXALIAS_RPL_1(func, rpl_func, rettype, parameters) _GL_EXTERN_C int _gl_cxxalias_dummy |
#define | _GL_CXXALIAS_RPL_CAST_1(func, rpl_func, rettype, parameters) _GL_EXTERN_C int _gl_cxxalias_dummy |
#define | _GL_CXXALIAS_SYS(func, rettype, parameters) _GL_EXTERN_C int _gl_cxxalias_dummy |
#define | _GL_CXXALIAS_SYS_CAST(func, rettype, parameters) _GL_EXTERN_C int _gl_cxxalias_dummy |
#define | _GL_CXXALIAS_SYS_CAST2(func, rettype, parameters, rettype2, parameters2) _GL_EXTERN_C int _gl_cxxalias_dummy |
#define | _GL_CXXALIASWARN(func) _GL_EXTERN_C int _gl_cxxalias_dummy |
#define | _GL_CXXALIASWARN1(func, rettype, parameters_and_attributes) _GL_EXTERN_C int _gl_cxxalias_dummy |
#define | _GL_ARG_NONNULL(params) |
#define | _GL_WARN_ON_USE(function, message) _GL_WARN_EXTERN_C int _gl_warn_on_use |
#define | _GL_WARN_ON_USE_CXX(function, rettype, parameters_and_attributes, msg) _GL_WARN_EXTERN_C int _gl_warn_on_use |
#define | _GL_WARN_EXTERN_C extern |
#define | _GL_STDIO_STRINGIZE(token) #token |
#define | _GL_STDIO_MACROEXPAND_AND_STRINGIZE(token) _GL_STDIO_STRINGIZE(token) |
Functions | |
_GL_CXXALIAS_SYS (fgetc, int,(FILE *stream)) | |
_GL_CXXALIASWARN (fgetc) | |
_GL_CXXALIAS_SYS (fgets, char *,(char *s, int n, FILE *stream)) | |
_GL_CXXALIASWARN (fgets) | |
_GL_CXXALIAS_SYS (fprintf, int,(FILE *fp, const char *format,...)) | |
_GL_CXXALIASWARN (fprintf) | |
_GL_CXXALIAS_SYS (fputc, int,(int c, FILE *stream)) | |
_GL_CXXALIASWARN (fputc) | |
_GL_CXXALIAS_SYS (fputs, int,(const char *string, FILE *stream)) | |
_GL_CXXALIASWARN (fputs) | |
_GL_CXXALIAS_SYS (fread, size_t,(void *ptr, size_t s, size_t n, FILE *stream)) | |
_GL_CXXALIASWARN (fread) | |
_GL_CXXALIAS_SYS (fscanf, int,(FILE *stream, const char *format,...)) | |
_GL_CXXALIASWARN (fscanf) | |
_GL_CXXALIAS_SYS (fwrite, size_t,(const void *ptr, size_t s, size_t n, FILE *stream)) | |
_GL_CXXALIASWARN (fwrite) | |
_GL_CXXALIAS_SYS (getc, int,(FILE *stream)) | |
_GL_CXXALIASWARN (getc) | |
_GL_CXXALIAS_SYS (getchar, int,(void)) | |
_GL_CXXALIASWARN (getchar) | |
_GL_CXXALIAS_SYS (printf, int,(const char *format,...)) | |
_GL_CXXALIASWARN (printf) | |
_GL_CXXALIAS_SYS (putc, int,(int c, FILE *stream)) | |
_GL_CXXALIASWARN (putc) | |
_GL_CXXALIAS_SYS (putchar, int,(int c)) | |
_GL_CXXALIASWARN (putchar) | |
_GL_CXXALIAS_SYS (puts, int,(const char *string)) | |
_GL_CXXALIASWARN (puts) | |
_GL_CXXALIAS_SYS (rename, int,(const char *old_filename, const char *new_filename)) | |
_GL_CXXALIASWARN (rename) | |
_GL_CXXALIAS_SYS (scanf, int,(const char *format,...)) | |
_GL_CXXALIASWARN (scanf) | |
_GL_CXXALIAS_SYS_CAST (vfprintf, int,(FILE *fp, const char *format, va_list args)) | |
_GL_CXXALIASWARN (vfprintf) | |
_GL_CXXALIAS_SYS_CAST (vprintf, int,(const char *format, va_list args)) | |
_GL_CXXALIASWARN (vprintf) | |
#define _GL_ATTRIBUTE_FORMAT_PRINTF | ( | formatstring_parameter, | |
first_argument | |||
) | _GL_ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument)) |
#define _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM | ( | formatstring_parameter, | |
first_argument | |||
) | _GL_ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument)) |
#define _GL_ATTRIBUTE_FORMAT_SCANF | ( | formatstring_parameter, | |
first_argument | |||
) | _GL_ATTRIBUTE_FORMAT ((__scanf__, formatstring_parameter, first_argument)) |
#define _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM | ( | formatstring_parameter, | |
first_argument | |||
) | _GL_ATTRIBUTE_FORMAT ((__scanf__, formatstring_parameter, first_argument)) |
#define _GL_CXXALIAS_RPL | ( | func, | |
rettype, | |||
parameters | |||
) | _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters) |
#define _GL_CXXALIAS_RPL_1 | ( | func, | |
rpl_func, | |||
rettype, | |||
parameters | |||
) | _GL_EXTERN_C int _gl_cxxalias_dummy |
#define _GL_CXXALIAS_RPL_CAST_1 | ( | func, | |
rpl_func, | |||
rettype, | |||
parameters | |||
) | _GL_EXTERN_C int _gl_cxxalias_dummy |
#define _GL_CXXALIAS_SYS | ( | func, | |
rettype, | |||
parameters | |||
) | _GL_EXTERN_C int _gl_cxxalias_dummy |
#define _GL_CXXALIAS_SYS_CAST | ( | func, | |
rettype, | |||
parameters | |||
) | _GL_EXTERN_C int _gl_cxxalias_dummy |
#define _GL_CXXALIAS_SYS_CAST2 | ( | func, | |
rettype, | |||
parameters, | |||
rettype2, | |||
parameters2 | |||
) | _GL_EXTERN_C int _gl_cxxalias_dummy |
#define _GL_CXXALIASWARN | ( | func | ) | _GL_EXTERN_C int _gl_cxxalias_dummy |
#define _GL_CXXALIASWARN1 | ( | func, | |
rettype, | |||
parameters_and_attributes | |||
) | _GL_EXTERN_C int _gl_cxxalias_dummy |
#define _GL_FUNCDECL_RPL | ( | func, | |
rettype, | |||
parameters_and_attributes | |||
) | _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes) |
#define _GL_FUNCDECL_RPL_1 | ( | rpl_func, | |
rettype, | |||
parameters_and_attributes | |||
) | _GL_EXTERN_C rettype rpl_func parameters_and_attributes |
#define _GL_FUNCDECL_SYS | ( | func, | |
rettype, | |||
parameters_and_attributes | |||
) | _GL_EXTERN_C rettype func parameters_and_attributes |
#define _GL_STDIO_INLINE _GL_INLINE |
#define _GL_STDIO_MACROEXPAND_AND_STRINGIZE | ( | token | ) | _GL_STDIO_STRINGIZE(token) |
#define _GL_WARN_ON_USE | ( | function, | |
message | |||
) | _GL_WARN_EXTERN_C int _gl_warn_on_use |
#define _GL_WARN_ON_USE_CXX | ( | function, | |
rettype, | |||
parameters_and_attributes, | |||
msg | |||
) | _GL_WARN_EXTERN_C int _gl_warn_on_use |
_GL_CXXALIAS_SYS | ( | fgetc | , |
int | , | ||
(FILE *stream) | |||
) |
_GL_CXXALIAS_SYS | ( | fgets | , |
char * | , | ||
(char *s, int n, FILE *stream) | |||
) |
_GL_CXXALIAS_SYS | ( | fprintf | , |
int | , | ||
(FILE *fp, const char *format,...) | |||
) |
_GL_CXXALIAS_SYS | ( | fputc | , |
int | , | ||
(int c, FILE *stream) | |||
) |
_GL_CXXALIAS_SYS | ( | fputs | , |
int | , | ||
(const char *string, FILE *stream) | |||
) |
_GL_CXXALIAS_SYS | ( | fread | , |
size_t | , | ||
(void *ptr, size_t s, size_t n, FILE *stream) | |||
) |
_GL_CXXALIAS_SYS | ( | fscanf | , |
int | , | ||
(FILE *stream, const char *format,...) | |||
) |
_GL_CXXALIAS_SYS | ( | fwrite | , |
size_t | , | ||
(const void *ptr, size_t s, size_t n, FILE *stream) | |||
) |
_GL_CXXALIAS_SYS | ( | getc | , |
int | , | ||
(FILE *stream) | |||
) |
_GL_CXXALIAS_SYS | ( | getchar | , |
int | , | ||
(void) | |||
) |
_GL_CXXALIAS_SYS | ( | printf | , |
int | , | ||
(const char *format,...) | |||
) |
_GL_CXXALIAS_SYS | ( | putc | , |
int | , | ||
(int c, FILE *stream) | |||
) |
_GL_CXXALIAS_SYS | ( | putchar | , |
int | , | ||
(int c) | |||
) |
_GL_CXXALIAS_SYS | ( | puts | , |
int | , | ||
(const char *string) | |||
) |
_GL_CXXALIAS_SYS | ( | rename | , |
int | , | ||
(const char *old_filename, const char *new_filename) | |||
) |
_GL_CXXALIAS_SYS | ( | scanf | , |
int | , | ||
(const char *format,...) | |||
) |
_GL_CXXALIAS_SYS_CAST | ( | vfprintf | , |
int | , | ||
(FILE *fp, const char *format, va_list args) | |||
) |
_GL_CXXALIAS_SYS_CAST | ( | vprintf | , |
int | , | ||
(const char *format, va_list args) | |||
) |
_GL_CXXALIASWARN | ( | fgetc | ) |
_GL_CXXALIASWARN | ( | fgets | ) |
_GL_CXXALIASWARN | ( | fprintf | ) |
_GL_CXXALIASWARN | ( | fputc | ) |
_GL_CXXALIASWARN | ( | fputs | ) |
_GL_CXXALIASWARN | ( | fread | ) |
_GL_CXXALIASWARN | ( | fscanf | ) |
_GL_CXXALIASWARN | ( | fwrite | ) |
_GL_CXXALIASWARN | ( | getc | ) |
_GL_CXXALIASWARN | ( | getchar | ) |
_GL_CXXALIASWARN | ( | printf | ) |
_GL_CXXALIASWARN | ( | putc | ) |
_GL_CXXALIASWARN | ( | putchar | ) |
_GL_CXXALIASWARN | ( | puts | ) |
_GL_CXXALIASWARN | ( | rename | ) |
_GL_CXXALIASWARN | ( | scanf | ) |
_GL_CXXALIASWARN | ( | vfprintf | ) |
_GL_CXXALIASWARN | ( | vprintf | ) |