Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion convertvec.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <malloc.h>
#include <stdlib.h>

#ifndef __APPLE__
#include <malloc.h>
#endif

const long long max_w = 2000;

// Convert from text format to binary
Expand Down