diff options
author | rsc <devnull@localhost> | 2005-01-11 17:43:53 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-01-11 17:43:53 +0000 |
commit | b8f742db850ffc99333a97ab54fc820c6de0fd98 (patch) | |
tree | 9096b9872c0e65a3f1f3cdd7b993c58411d20e5e /src/cmd/map | |
parent | 530d00164177fd68e2aeb403e7b9be31823e3168 (diff) | |
download | plan9port-b8f742db850ffc99333a97ab54fc820c6de0fd98.tar.gz plan9port-b8f742db850ffc99333a97ab54fc820c6de0fd98.tar.bz2 plan9port-b8f742db850ffc99333a97ab54fc820c6de0fd98.zip |
os x changes
Diffstat (limited to 'src/cmd/map')
-rw-r--r-- | src/cmd/map/map.c | 2 | ||||
-rw-r--r-- | src/cmd/map/mkfile | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd/map/map.c b/src/cmd/map/map.c index 47109d43..e8dd3ab3 100644 --- a/src/cmd/map/map.c +++ b/src/cmd/map/map.c @@ -105,6 +105,8 @@ double diddle(struct place *, double, double); void dobounds(double, double, double, double, int); void dogrid(double, double, double, double); int duple(struct place *, double); +#define fmax map_fmax +#define fmin map_fmin double fmax(double, double); double fmin(double, double); void getdata(char *); diff --git a/src/cmd/map/mkfile b/src/cmd/map/mkfile index 4d272749..43f2205d 100644 --- a/src/cmd/map/mkfile +++ b/src/cmd/map/mkfile @@ -5,7 +5,6 @@ LIB=libmap/libmap.a OFILES=map.$O\ symbol.$O\ index.$O\ - sqrt.$O\ HFILES=map.h\ iplot.h\ |