blob: a9deece956bf4b43f1a864ba2f223f4b463c1815 [file] [log] [blame]
Kyle Swenson8d8f6542021-03-15 11:02:55 -06001/*
2
3 * Copyright (C) 2015 Thomas Meyer (thomas@m3y3r.de)
4 * Copyright (C) 2005 Jeff Dike (jdike@karaya.com)
5 * Licensed under the GPL
6 */
7
8#ifndef __STUB_DATA_H
9#define __STUB_DATA_H
10
11#include <time.h>
12
13struct stub_data {
14 unsigned long offset;
15 int fd;
16 long err;
17};
18
19#endif