moved the definition of sys_filesize. It had a funny place.
This commit is contained in:
parent
9d744c31c3
commit
991c568ee4
1 changed files with 1 additions and 3 deletions
|
@ -100,9 +100,9 @@ readfile(fd, fn, size, pbuf)
|
||||||
register File *fd;
|
register File *fd;
|
||||||
char *fn; /* file name */
|
char *fn; /* file name */
|
||||||
register long *size;
|
register long *size;
|
||||||
extern long sys_filesize();
|
|
||||||
char **pbuf; /* output parameter */
|
char **pbuf; /* output parameter */
|
||||||
{
|
{
|
||||||
|
extern long sys_filesize();
|
||||||
int rsize;
|
int rsize;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
|
@ -296,7 +296,6 @@ InsertFile(filnam, table, result)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fd) {
|
if (fd) {
|
||||||
struct buffer_header *push_bh();
|
|
||||||
register struct buffer_header *bh = push_bh();
|
register struct buffer_header *bh = push_bh();
|
||||||
|
|
||||||
if (!bh) {
|
if (!bh) {
|
||||||
|
@ -331,7 +330,6 @@ int
|
||||||
InsertText(text, length)
|
InsertText(text, length)
|
||||||
char *text;
|
char *text;
|
||||||
{
|
{
|
||||||
struct buffer_header *push_bh();
|
|
||||||
register struct buffer_header *bh = push_bh();
|
register struct buffer_header *bh = push_bh();
|
||||||
|
|
||||||
if (!bh) return 0;
|
if (!bh) return 0;
|
||||||
|
|
Loading…
Reference in a new issue