aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs6/ftrig1.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs6/ftrig1.h')
-rw-r--r--src/libs6/ftrig1.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/libs6/ftrig1.h b/src/libs6/ftrig1.h
deleted file mode 100644
index 229de66..0000000
--- a/src/libs6/ftrig1.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* ISC license. */
-
-#ifndef FTRIG1_H
-#define FTRIG1_H
-
-#include <skalibs/stralloc.h>
-
-#define FTRIG1_PREFIX "ftrig1"
-#define FTRIG1_PREFIXLEN (sizeof FTRIG1_PREFIX - 1)
-
-typedef struct ftrig1_s ftrig1_t, *ftrig1_t_ref ;
-struct ftrig1_s
-{
- int fd ;
- int fdw ;
- stralloc name ;
-} ;
-#define FTRIG1_ZERO { .fd = -1, .fdw = -1, .name = STRALLOC_ZERO }
-
-extern int ftrig1_make (ftrig1_t *, char const *) ;
-extern void ftrig1_free (ftrig1_t *) ;
-
-#endif