Deleted Added
full compact
fileaccess.c (94290) fileaccess.c (231042)
1/* $FreeBSD: head/sys/boot/ficl/fileaccess.c 94290 2002-04-09 17:45:28Z dcs $ */
1/* $FreeBSD: head/sys/boot/ficl/fileaccess.c 231042 2012-02-05 20:00:39Z rpaulo $ */
2
3#include <errno.h>
4#include <stdlib.h>
5#include <stdio.h>
6#include <string.h>
7#include <ctype.h>
8#include <sys/stat.h>
9#include "ficl.h"

--- 405 unchanged lines hidden (view full) ---

415
416#ifdef FICL_HAVE_FTRUNCATE
417 dictAppendWord(dp, "resize-file", ficlResizeFile, FW_DEFAULT);
418
419 ficlSetEnv(pSys, "file", FICL_TRUE);
420 ficlSetEnv(pSys, "file-ext", FICL_TRUE);
421#endif /* FICL_HAVE_FTRUNCATE */
422#else
2
3#include <errno.h>
4#include <stdlib.h>
5#include <stdio.h>
6#include <string.h>
7#include <ctype.h>
8#include <sys/stat.h>
9#include "ficl.h"

--- 405 unchanged lines hidden (view full) ---

415
416#ifdef FICL_HAVE_FTRUNCATE
417 dictAppendWord(dp, "resize-file", ficlResizeFile, FW_DEFAULT);
418
419 ficlSetEnv(pSys, "file", FICL_TRUE);
420 ficlSetEnv(pSys, "file-ext", FICL_TRUE);
421#endif /* FICL_HAVE_FTRUNCATE */
422#else
423 &pSys;
423 (void)pSys;
424#endif /* FICL_WANT_FILE */
425}
424#endif /* FICL_WANT_FILE */
425}