1 /*
2  * Copyright (C) by Argonne National Laboratory
3  *     See COPYRIGHT in top-level directory
4  */
5 
6 #ifndef YAKSURI_SEQ_PRE_H_INCLUDED
7 #define YAKSURI_SEQ_PRE_H_INCLUDED
8 
9 /* This is a API header for the seq device and should not include any
10  * internal headers, except for yaksa_config.h, in order to get the
11  * configure checks. */
12 
13 typedef struct {
14     void *priv;
15 } yaksuri_seq_type_s;
16 
17 typedef struct {
18     void *priv;
19 } yaksuri_seq_info_s;
20 
21 #endif /* YAKSURI_SEQ_PRE_H_INCLUDED */
22