]> 4ch.mooo.com Git - 16.git/blobdiff - src/lib/planar.c
updated copyright www
[16.git] / src / lib / planar.c
index 41a3182e4bf062f6eddb39a768c4e1fd19c92f59..3fd1c5ed2b25b85ac5a5849bf9d282ea2d010cf2 100755 (executable)
@@ -1,5 +1,5 @@
 /* Project 16 Source Code~\r
- * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669\r
+ * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123\r
  *\r
  * This file is part of Project 16.\r
  *\r
 /*\r
  * Implimentation of the planar buffer files.\r
  */\r
+#include <stdio.h>\r
 #include <stdlib.h>\r
+#include <malloc.h>\r
+\r
 #include "src/lib/planar.h"\r
 \r
 /* creates a planar buffer from the bitmap data.\r
@@ -84,7 +87,7 @@ planar_buf_alloc(word width, word height) {
 \r
        /* allocate the planes */\r
        for(i=0; i<4; i++) {\r
-       p->plane[i] = malloc(p->height * p->pwidth);\r
+               p->plane[i] = malloc(p->height * p->pwidth);\r
        }\r
 \r
        return p;\r