comparison src/fileio.c @ 39682:5f60884970a8

Don't define min/max.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 08 Oct 2001 08:07:49 +0000
parents 5d5957da979a
children 579177964efa
comparison
equal deleted inserted replaced
39681:87cc624f4e1e 39682:5f60884970a8
156 #endif 156 #endif
157 157
158 #ifndef S_ISLNK 158 #ifndef S_ISLNK
159 # define lstat stat 159 # define lstat stat
160 #endif 160 #endif
161
162 #define min(a, b) ((a) < (b) ? (a) : (b))
163 #define max(a, b) ((a) > (b) ? (a) : (b))
164 161
165 /* Nonzero during writing of auto-save files */ 162 /* Nonzero during writing of auto-save files */
166 int auto_saving; 163 int auto_saving;
167 164
168 /* Set by auto_save_1 to mode of original file so Fwrite_region will create 165 /* Set by auto_save_1 to mode of original file so Fwrite_region will create