X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/5c01446c027960e00b33f623212de645475569aa..ec173fd2c:/sbr/seq_list.c?ds=sidebyside diff --git a/sbr/seq_list.c b/sbr/seq_list.c index f3a26738..0aef35e3 100644 --- a/sbr/seq_list.c +++ b/sbr/seq_list.c @@ -6,8 +6,11 @@ * complete copyright information. */ -#include -#include +#include "h/mh.h" +#include "m_name.h" +#include "seq_list.h" +#include "seq_getnum.h" +#include "h/utils.h" /* allocate this much buffer space at a time */ #define MAXBUFFER 1024 @@ -100,5 +103,5 @@ seq_list(struct msgs *mp, char *seqname) bp += strlen(bp); } } - return (bp > buffer? buffer : NULL); + return bp > buffer ? buffer : NULL; }