- Timestamp:
- Nov 5, 2015, 1:02:32 PM (11 years ago)
- Location:
- trunk/Ohana/src/libohana
- Files:
-
- 2 added
- 2 edited
-
Makefile (modified) (3 diffs)
-
include/ohana.h (modified) (1 diff)
-
src/print_floats.c (added)
-
test/print_floats.c (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/libohana/Makefile
r38459 r39040 45 45 $(SRC)/Fread.$(ARCH).o \ 46 46 $(SRC)/IOBufferOps.$(ARCH).o \ 47 $(SRC)/memstr.$(ARCH).o \47 $(SRC)/memstr.$(ARCH).o \ 48 48 $(SRC)/rconnect.$(ARCH).o \ 49 49 $(SRC)/CommOps.$(ARCH).o \ … … 51 51 $(SRC)/errors.$(ARCH).o \ 52 52 $(SRC)/gprint.$(ARCH).o \ 53 $(SRC)/print_floats.$(ARCH).o \ 53 54 $(SRC)/version.$(ARCH).o 54 55 … … 64 65 $(DESTLIB)/libohana.$(DLLTYPE): $(LIB)/libohana.$(ARCH).$(DLLTYPE) 65 66 66 TESTPROG = memtest typetest string 67 TESTPROG = print_floats 68 # TESTPROG = memtest typetest string 69 67 70 $(TESTPROG) : % : $(TESTBIN)/% $(OBJS) 68 71 test: $(TESTPROG) -
trunk/Ohana/src/libohana/include/ohana.h
r38553 r39040 483 483 int ohana_bisection_double (double *values, int Nvalues, double threshold); 484 484 485 # endif 485 int sprintf_float (char *output, float value); 486 int sprintf_double (char *output, double value); 487 488 # endif
Note:
See TracChangeset
for help on using the changeset viewer.
