even better BSD make compat ;)

This commit is contained in:
leitner
2003-10-07 16:27:54 +00:00
parent 276577dd52
commit b295650a73
3 changed files with 6 additions and 4 deletions

View File

@@ -2,5 +2,5 @@
#include "str.h"
void array_cats0(array* to,const char* from) {
array_catb(to,from,strlen(from)+1);
array_catb(to,from,str_len(from)+1);
}