您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }