missing_proto.h 211 B

12345678910111213
  1. #ifndef H_MISSING_PROTO_H
  2. #define H_MISSING_PROTO_H
  3. #ifdef NOSBRK
  4. void *sbrk(__intptr_t increment);
  5. int brk(void * addr);
  6. #endif
  7. #ifdef NOMKTEMP
  8. char *mktemp(char *template);
  9. #endif
  10. #endif /* H_MISSING_H */