Merge pull request #47 from mfcovington/feature/fix-maxk-error

Include 'unistd.h' to explicitly declare 'getopt'
This commit is contained in:
Heng Li 2015-11-14 20:47:22 -05:00
commit e3ea2a8222
1 changed files with 1 additions and 0 deletions

1
maxk.c
View File

@ -3,6 +3,7 @@
#include <stdlib.h>
#include <limits.h>
#include <string.h>
#include <unistd.h>
#include "bwa.h"
#include "bwamem.h"
#include "kseq.h"