Skip to content

Instantly share code, notes, and snippets.

@ncopa
Created August 27, 2013 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ncopa/6350523 to your computer and use it in GitHub Desktop.
Save ncopa/6350523 to your computer and use it in GitHub Desktop.
/* If we are compiling with optimizing read this file. It contains
several optimizing inline functions and macros. */
#define fgetc(_fp) __FGETC(_fp)
#define fputc(_ch, _fp) __FPUTC(_ch, _fp)
#ifdef __USE_MISC
#define fgetc_unlocked(_fp) __FGETC_UNLOCKED(_fp)
#define fputc_unlocked(_ch, _fp) __FPUTC_UNLOCKED(_ch, _fp)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment