include <foo> -> include "foo"

This commit is contained in:
leitner
2016-03-17 11:13:23 +00:00
parent 48592a2400
commit a1f1986247
22 changed files with 41 additions and 41 deletions

View File

@@ -1,4 +1,4 @@
#include <stralloc.h>
#include "stralloc.h"
int stralloc_chomp(stralloc* sa) {
size_t max=sa->len;

View File

@@ -1,4 +1,4 @@
#include <stralloc.h>
#include "stralloc.h"
int stralloc_chop(stralloc* sa) {
if (sa->len==0) return -1;

View File

@@ -1,4 +1,4 @@
#include <stralloc.h>
#include "stralloc.h"
void stralloc_zero(stralloc* sa) {
sa->len=0;