Advertisement
eXFq7GJ1cC

Untitled

Aug 13th, 2012
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.80 KB | None | 0 0
  1. void assert(scalar expression);
  2. void feclearexcept(int excepts);
  3. void fegetexceptflag(fexcept_t *flagp, int excepts);
  4. void feraiseexcept(int excepts);
  5. void fesetexceptflag(const fexcept_t *flagp, int excepts);
  6. void fegetenv(fenv_t *envp);
  7. void fesetenv(const fenv_t *envp);
  8. void feupdateenv(const fenv_t *envp);
  9. void longjmp(jmp_buf env, int val);
  10. void va_copy(va_list dest, va_list src);
  11. void va_end(va_list ap);
  12. void va_start(va_list ap, parmN);
  13. void setbuf(FILE * restrict stream, char * restrict buf);
  14. void rewind(FILE *stream);
  15. void clearerr(FILE *stream);
  16. void perror(const char *s);
  17. void srand(unsigned int seed);
  18. void free(void *ptr);
  19. void abort(void);
  20. void exit(int status);
  21. void _Exit(int status);
  22. void qsort(void *base, size_t nmemb, size_t size, int (*compar)(const void *, const void *));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement