summaryrefslogtreecommitdiff
path: root/cloog-0.16.3/include/cloog/input.h
diff options
context:
space:
mode:
Diffstat (limited to 'cloog-0.16.3/include/cloog/input.h')
-rw-r--r--cloog-0.16.3/include/cloog/input.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/cloog-0.16.3/include/cloog/input.h b/cloog-0.16.3/include/cloog/input.h
deleted file mode 100644
index 4ad59fa..0000000
--- a/cloog-0.16.3/include/cloog/input.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef CLOOG_INPUT_H
-#define CLOOG_INPUT_H
-
-#if defined(__cplusplus)
-extern "C" {
-#endif
-
-struct clooginput {
- CloogDomain *context;
- CloogUnionDomain *ud;
-};
-typedef struct clooginput CloogInput;
-
-CloogInput *cloog_input_read(FILE *file, CloogOptions *options);
-CloogInput *cloog_input_alloc(CloogDomain *context, CloogUnionDomain *ud);
-void cloog_input_free(CloogInput *input);
-
-void cloog_input_dump_cloog(FILE *file, CloogInput *input, CloogOptions *opt);
-
-#if defined(__cplusplus)
-}
-#endif
-
-#endif