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 <buffer.h>
#include "buffer.h"
#include <unistd.h>
void buffer_close(buffer* b) {

View File

@@ -1,4 +1,4 @@
#include <buffer.h>
#include "buffer.h"
ssize_t buffer_getline(buffer* b,char* x,size_t len) {
return buffer_get_token(b,x,len,"\n",1);

View File

@@ -1,4 +1,4 @@
#include <buffer.h>
#include "buffer.h"
#include <mmap.h>
static ssize_t op() {

View File

@@ -1,6 +1,6 @@
#include "errmsg.h"
#include "errmsg_int.h"
#include <str.h>
#include "str.h"
#ifdef __MINGW32__