summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..7c9b4ed
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,14 @@
+#include <stdio.h>
+
+#include "dct.h"
+
+int main(void) {
+ int retval;
+ int workspace[DCTSIZE_BLOCK];
+
+ retval = 0;
+
+ fdct(workspace);
+
+ return retval;
+}