include <foo> -> include "foo"
This commit is contained in:
parent
48592a2400
commit
a1f1986247
@ -1,4 +1,4 @@
|
||||
#include <buffer.h>
|
||||
#include "buffer.h"
|
||||
#include <unistd.h>
|
||||
|
||||
void buffer_close(buffer* b) {
|
||||
|
@ -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);
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <buffer.h>
|
||||
#include "buffer.h"
|
||||
#include <mmap.h>
|
||||
|
||||
static ssize_t op() {
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "errmsg.h"
|
||||
#include "errmsg_int.h"
|
||||
#include <str.h>
|
||||
#include "str.h"
|
||||
|
||||
#ifdef __MINGW32__
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include <stralloc.h>
|
||||
#include <buffer.h>
|
||||
#include <io.h>
|
||||
#include <errmsg.h>
|
||||
#include "stralloc.h"
|
||||
#include "buffer.h"
|
||||
#include "io.h"
|
||||
#include "errmsg.h"
|
||||
#include <unistd.h>
|
||||
|
||||
int main() {
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <str.h>
|
||||
#include <buffer.h>
|
||||
#include "str.h"
|
||||
#include "buffer.h"
|
||||
|
||||
/*
|
||||
* The str_* functions have a pretty similar functionality to the byte_* ones
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "io_internal.h"
|
||||
#include <iarray.h>
|
||||
#include <fmt.h>
|
||||
#include "fmt.h"
|
||||
#include <sys/time.h>
|
||||
|
||||
unsigned int io_debugstring(int64 s,char* buf,unsigned int bufsize) {
|
||||
|
@ -29,7 +29,7 @@
|
||||
#endif
|
||||
|
||||
#ifdef __dietlibc__
|
||||
#include <fmt.h>
|
||||
#include "fmt.h"
|
||||
#include <write12.h>
|
||||
#endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <stralloc.h>
|
||||
#include "stralloc.h"
|
||||
|
||||
int stralloc_chomp(stralloc* sa) {
|
||||
size_t max=sa->len;
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <stralloc.h>
|
||||
#include "stralloc.h"
|
||||
|
||||
int stralloc_chop(stralloc* sa) {
|
||||
if (sa->len==0) return -1;
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <stralloc.h>
|
||||
#include "stralloc.h"
|
||||
|
||||
void stralloc_zero(stralloc* sa) {
|
||||
sa->len=0;
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <buffer.h>
|
||||
#include "buffer.h"
|
||||
|
||||
int main() {
|
||||
buffer input;
|
||||
|
@ -1,9 +1,9 @@
|
||||
#include <cdb.h>
|
||||
#include <buffer.h>
|
||||
#include "buffer.h"
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
#include <stdlib.h>
|
||||
#include <errmsg.h>
|
||||
#include "errmsg.h"
|
||||
|
||||
#ifndef O_BINARY
|
||||
#define O_BINARY 0
|
||||
|
@ -1,9 +1,9 @@
|
||||
#include <dns.h>
|
||||
#include <ip4.h>
|
||||
#include <buffer.h>
|
||||
#include "buffer.h"
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#include <errmsg.h>
|
||||
#include "errmsg.h"
|
||||
|
||||
int main(int argc,char* argv[]) {
|
||||
static char seed[128];
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <fmt.h>
|
||||
#include "fmt.h"
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include <time.h>
|
||||
#include <scan.h>
|
||||
#include <buffer.h>
|
||||
#include <fmt.h>
|
||||
#include "scan.h"
|
||||
#include "buffer.h"
|
||||
#include "fmt.h"
|
||||
|
||||
int main() {
|
||||
char buf[100];
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <fmt.h>
|
||||
#include <buffer.h>
|
||||
#include "fmt.h"
|
||||
#include "buffer.h"
|
||||
|
||||
int main() {
|
||||
char buf[1024];
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <fmt.h>
|
||||
#include <scan.h>
|
||||
#include "fmt.h"
|
||||
#include "scan.h"
|
||||
#include <assert.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <fmt.h>
|
||||
#include <str.h>
|
||||
#include "fmt.h"
|
||||
#include "str.h"
|
||||
#include <assert.h>
|
||||
|
||||
int main() {
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include <fmt.h>
|
||||
#include <str.h>
|
||||
#include "fmt.h"
|
||||
#include "str.h"
|
||||
#include <assert.h>
|
||||
#include <scan.h>
|
||||
#include "scan.h"
|
||||
#include <byte.h>
|
||||
|
||||
int main() {
|
||||
|
@ -3,10 +3,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <fmt.h>
|
||||
#include <stralloc.h>
|
||||
#include <buffer.h>
|
||||
#include <scan.h>
|
||||
#include "fmt.h"
|
||||
#include "stralloc.h"
|
||||
#include "buffer.h"
|
||||
#include "scan.h"
|
||||
#include <textcode.h>
|
||||
#include <byte.h>
|
||||
#include <uint16.h>
|
||||
@ -14,7 +14,7 @@
|
||||
#include <uint64.h>
|
||||
#include <openreadclose.h>
|
||||
#include <mmap.h>
|
||||
#include <str.h>
|
||||
#include "str.h"
|
||||
|
||||
char buf[100];
|
||||
stralloc sa;
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include <scan.h>
|
||||
#include <fmt.h>
|
||||
#include <buffer.h>
|
||||
#include "scan.h"
|
||||
#include "fmt.h"
|
||||
#include "buffer.h"
|
||||
#include <assert.h>
|
||||
|
||||
int main() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user