login

<     >

2015-07-20 23:55:29 (UTC-03:00)

Marcel Rodrigues <marcelgmr@gmail.com>

Remove undefined function dump_ppm().

diff --git a/dump.c b/dump.c
index 0d8b6e1..1f62b14 100644
--- a/dump.c
+++ b/dump.c
@@ -29,9 +29,3 @@ dump_txt(Term *term, const char *fname)
     }
     close(fd);
 }
-
-void
-dump_ppm(Term *term, const char *fname)
-{
-    uint8_t pix[term->rows*term->cols];
-}

diff --git a/dump.h b/dump.h
index bb543c0..cf5faf5 100644
--- a/dump.h
+++ b/dump.h
@@ -1,2 +1 @@
 void dump_txt(Term *term, const char *fname);
-void dump_ppm(Term *term, const char *fname);