diff options
| author | Andrew Choi | 2002-04-26 23:39:06 +0000 |
|---|---|---|
| committer | Andrew Choi | 2002-04-26 23:39:06 +0000 |
| commit | e0f712ba55fa0d073f6ab93606e428f61fc7caf2 (patch) | |
| tree | 7dc6d3403fafcbee1a83288ac840f7eba1d92b44 /src/editfns.c | |
| parent | 501d8923ae2cdec4ef50f050bb66d3715ba2a8f6 (diff) | |
| download | emacs-e0f712ba55fa0d073f6ab93606e428f61fc7caf2.tar.gz emacs-e0f712ba55fa0d073f6ab93606e428f61fc7caf2.zip | |
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
lisp/ChangeLog, and src/ChangeLog for list of changes.
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/editfns.c b/src/editfns.c index bfc982b9dbe..86129c63698 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -33,6 +33,12 @@ Boston, MA 02111-1307, USA. */ | |||
| 33 | #include <unistd.h> | 33 | #include <unistd.h> |
| 34 | #endif | 34 | #endif |
| 35 | 35 | ||
| 36 | /* Without this, sprintf on Mac OS Classic will produce wrong | ||
| 37 | result. */ | ||
| 38 | #ifdef MAC_OS8 | ||
| 39 | #include <stdio.h> | ||
| 40 | #endif | ||
| 41 | |||
| 36 | #include <ctype.h> | 42 | #include <ctype.h> |
| 37 | 43 | ||
| 38 | #include "lisp.h" | 44 | #include "lisp.h" |