diff options
| author | Paul Eggert | 2011-09-10 12:41:33 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-09-10 12:41:33 -0700 |
| commit | dfb3f7559bbb4338ba01ec59e9188687a2bd7dc4 (patch) | |
| tree | 83c39e0f04e1d4146b3d5099c5e5088ea0751e15 /src/buffer.h | |
| parent | 0d3ff3756cdb68b973ec6921104d56e44ae96e79 (diff) | |
| download | emacs-dfb3f7559bbb4338ba01ec59e9188687a2bd7dc4.tar.gz emacs-dfb3f7559bbb4338ba01ec59e9188687a2bd7dc4.zip | |
* buffer.h: Include <sys/types.h> instead of <time.h>.
Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
Problem reported by Herbert J. Skuhra.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h index c50cfe56c77..73628fe6dfc 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -18,7 +18,7 @@ GNU General Public License for more details. | |||
| 18 | You should have received a copy of the GNU General Public License | 18 | You should have received a copy of the GNU General Public License |
| 19 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | 19 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 20 | 20 | ||
| 21 | #include <time.h> /* for time_t */ | 21 | #include <sys/types.h> /* for off_t, time_t */ |
| 22 | 22 | ||
| 23 | /* Accessing the parameters of the current buffer. */ | 23 | /* Accessing the parameters of the current buffer. */ |
| 24 | 24 | ||