You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

model.c 434B

123456789101112131415161718192021
  1. /*
  2. * Coverity modelling file
  3. *
  4. */
  5. typedef long off_t;
  6. typedef void * userptr_t;
  7. typedef long long time_t;
  8. struct tm;
  9. /* Inhibit use of built-in models for functions where Coverity's
  10. * assumptions about the modelled function are incorrect for iPXE.
  11. */
  12. char * strerror ( int errno ) {
  13. }
  14. void copy_from_user ( void *dest, userptr_t src, off_t src_off, size_t len ) {
  15. }
  16. time_t mktime ( struct tm *tm ) {
  17. }
  18. int getchar ( void ) {
  19. }