1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-30 08:09:04 +00:00

* 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.
This commit is contained in:
Paul Eggert 2011-09-10 12:41:33 -07:00
parent 0d3ff3756c
commit dfb3f7559b
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
* 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.
2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
* xml.c (parse_region): Make the parsing work for

View File

@ -18,7 +18,7 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#include <time.h> /* for time_t */
#include <sys/types.h> /* for off_t, time_t */
/* Accessing the parameters of the current buffer. */