diff options
| author | Karl Heuer | 1998-04-09 18:12:46 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-04-09 18:12:46 +0000 |
| commit | 03887dd3884cd7bf42ed18f2fac974653fb628be (patch) | |
| tree | ea3d65593cff5bf79dc1920f01d1c0d20492a352 /src/w32.c | |
| parent | f4fe72d542cac4978ce691b89a0fe2524515b274 (diff) | |
| download | emacs-03887dd3884cd7bf42ed18f2fac974653fb628be.tar.gz emacs-03887dd3884cd7bf42ed18f2fac974653fb628be.zip | |
(min, max): Define as macros.
Diffstat (limited to 'src/w32.c')
| -rw-r--r-- | src/w32.c | 5 |
1 files changed, 5 insertions, 0 deletions
| @@ -79,6 +79,11 @@ Boston, MA 02111-1307, USA. | |||
| 79 | #include "ndir.h" | 79 | #include "ndir.h" |
| 80 | #include "w32heap.h" | 80 | #include "w32heap.h" |
| 81 | 81 | ||
| 82 | #undef min | ||
| 83 | #undef max | ||
| 84 | #define min(x, y) (((x) < (y)) ? (x) : (y)) | ||
| 85 | #define max(x, y) (((x) > (y)) ? (x) : (y)) | ||
| 86 | |||
| 82 | extern Lisp_Object Vw32_downcase_file_names; | 87 | extern Lisp_Object Vw32_downcase_file_names; |
| 83 | extern Lisp_Object Vw32_generate_fake_inodes; | 88 | extern Lisp_Object Vw32_generate_fake_inodes; |
| 84 | extern Lisp_Object Vw32_get_true_file_attributes; | 89 | extern Lisp_Object Vw32_get_true_file_attributes; |