diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2013-09-11 09:43:07 -0400 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2013-09-11 09:43:07 -0400 |
commit | f52d24cd7099fc930fca785ec65401de50cd931d (patch) | |
tree | df4c715a5f2476b0a82be66c623bf550e92ab215 | |
parent | bd165d9e97c9caec55b4a512e64882296617c041 (diff) |
add headers
-rw-r--r-- | kmer_frequency_per_sequence.c | 5 | ||||
-rw-r--r-- | kmer_total_count.c | 5 | ||||
-rw-r--r-- | kmer_utils.c | 1 |
3 files changed, 7 insertions, 4 deletions
diff --git a/kmer_frequency_per_sequence.c b/kmer_frequency_per_sequence.c index e0995f9..e876d57 100644 --- a/kmer_frequency_per_sequence.c +++ b/kmer_frequency_per_sequence.c @@ -1,9 +1,10 @@ // Copyright 2013 Calvin Morrison -#include <stdio.h> #include <math.h> +#include <stdint.h> +#include <stdio.h> #include <stdlib.h> +#include <string.h> #include <unistd.h> -#include <stdint.h> #include "kmer_utils.h" diff --git a/kmer_total_count.c b/kmer_total_count.c index 4d1ab87..9e92976 100644 --- a/kmer_total_count.c +++ b/kmer_total_count.c @@ -1,9 +1,10 @@ // Copyright 2013 Calvin Morrison -#include <stdio.h> #include <math.h> +#include <stdint.h> +#include <stdio.h> #include <stdlib.h> +#include <string.h> #include <unistd.h> -#include <stdint.h> #include "kmer_utils.h" diff --git a/kmer_utils.c b/kmer_utils.c index b6f66b5..ae01b05 100644 --- a/kmer_utils.c +++ b/kmer_utils.c @@ -1,5 +1,6 @@ #include <stdint.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> |