diff options
author | joeh <joeh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-07-14 21:09:15 +0000 |
---|---|---|
committer | joeh <joeh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-07-14 21:09:15 +0000 |
commit | 82eb90707b0457eadf43bf35741b3b233c7f9e99 (patch) | |
tree | 4f3e5bdc1386f6c9b820ea4bd994c423b06ccf5e /PACE/tests | |
parent | a707b7510934aead36973627f13816a64af9c7a1 (diff) | |
download | ATCD-82eb90707b0457eadf43bf35741b3b233c7f9e99.tar.gz |
Fri Jul 14 15:55:24 2000 Joe Hoffert <joeh@cs.wustl.edu>
Diffstat (limited to 'PACE/tests')
-rw-r--r-- | PACE/tests/Makefile | 6 | ||||
-rw-r--r-- | PACE/tests/Stdio_Test.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/PACE/tests/Makefile b/PACE/tests/Makefile index bfe7f13371b..e6af0d99462 100644 --- a/PACE/tests/Makefile +++ b/PACE/tests/Makefile @@ -20,9 +20,13 @@ ifndef inline else ifneq (0,$(inline)) CFLAGS += -DPACE_HAS_INLINE - endif # inline + else + LIBS += -L$(ACE_ROOT)/PACE/pace -lPACE + endif # ! inline endif # ! inline +CFLAGS += -DPACE_HAS_ALL_POSIX_FUNCS + #---------------------------------------------------------------------------- # Local macros #---------------------------------------------------------------------------- diff --git a/PACE/tests/Stdio_Test.c b/PACE/tests/Stdio_Test.c index a64cca8d555..65054786616 100644 --- a/PACE/tests/Stdio_Test.c +++ b/PACE/tests/Stdio_Test.c @@ -30,7 +30,7 @@ int main (int argc, char **argv) { /* Test creating/opening a file. */ - FILE *file; + PACE_FILE *file; int retval; char* retval2; char buffer[256]; |