1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00

moved debug.h lib.h to src

This commit is contained in:
Marenz 2011-05-08 23:40:26 +02:00
parent ad23d4ea99
commit ab8f70150e
14 changed files with 15 additions and 15 deletions

View file

@ -1,6 +1,6 @@
OPT = -O2
DEBUG = 2
CFLAGS = -I../include -Wall -std=c99 ${OPT}
CFLAGS = -I../include -I../src -Wall -std=c99 ${OPT}
LDFLAGS = -L../lib
LOADLIBES = -lpsyc -lm
LOADLIBES_NET = ${LOADLIBES}

View file

@ -2,7 +2,7 @@
#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
#include "../include/psyc/lib.h"
#include <lib.h>
int main() {
unless (psyc_getVarType(PSYC_C2ARG("_list"))) return 1;

View file

@ -2,7 +2,7 @@
#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
#include "../include/psyc/lib.h"
#include <lib.h>
int main() {
#if 0

View file

@ -1,5 +1,5 @@
#include <stdio.h>
#include "../include/psyc/lib.h"
#include <lib.h>
int main() {
if (psyc_matches(PSYC_C2ARG("_failure_delivery"), PSYC_C2ARG("_failure_unsuccessful_delivery_death"))) return 1;

View file

@ -1,6 +1,6 @@
#include <stdio.h>
#include <psyc/lib.h>
#include <lib.h>
#include <psyc/render.h>
#include <psyc/syntax.h>

View file

@ -1,6 +1,6 @@
#include <stdio.h>
#include <psyc/lib.h>
#include <lib.h>
#include <psyc/text.h>
#define BUFSIZE 512