stub-data.h 276 B

12345678910111213141516171819
  1. /*
  2. * Copyright (C) 2015 Thomas Meyer (thomas@m3y3r.de)
  3. * Copyright (C) 2005 Jeff Dike (jdike@karaya.com)
  4. * Licensed under the GPL
  5. */
  6. #ifndef __STUB_DATA_H
  7. #define __STUB_DATA_H
  8. #include <time.h>
  9. struct stub_data {
  10. unsigned long offset;
  11. int fd;
  12. long err;
  13. };
  14. #endif