remove calloc calls
[compress.git] / fprintf.c
index 7b3b097b753cdb4828d73676ff5105cda5b7d8f6..f74189c369b906be442261fbcfbe20ecc523614f 100644 (file)
--- a/fprintf.c
+++ b/fprintf.c
   - initial version
 */
 
-#include <fcntl.h>
 #include <stdarg.h>
 #include <unistd.h>
 
+#include "fprintf.h"
+
+int _fdout = STDOUT_FILENO;
+int _fderr = STDERR_FILENO;
+
 inline unsigned int nextpow (unsigned int x, int base) {
     unsigned int n = 0;
     while (x) {