aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/econvert.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/econvert.c b/src/econvert.c
index 2218105..0f9b2ad 100644
--- a/src/econvert.c
+++ b/src/econvert.c
@@ -17,6 +17,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*/
+#include <stdio.h>
+
/**
* @file econvert.c
* @author J08nY <johny@neuromancer.sk>
@@ -24,4 +26,6 @@
* @copyright GPL v2.0
*/
-int main(void) { return 0; }
+int main(void) {
+ fprintf(stderr, "This is not implemented *yet*.\n");
+}