mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-08 20:41:59 +03:00
Added missing prototype.
This commit is contained in:
parent
06744a04b7
commit
06542c693a
@ -1,3 +1,7 @@
|
||||
2000-02-03 Andrew V. Samoilov <sav@bcs.zp.ua>
|
||||
|
||||
* xdirentry.h: added prototype for vfs_s_retrieve_file
|
||||
|
||||
2000-01-31 Andrew V. Samoilov <sav@bcs.zp.ua>
|
||||
|
||||
* direntry.c: (vfs_s_resolve_symlink, vfs_s_readlink) fixed segfaults
|
||||
|
@ -1,6 +1,8 @@
|
||||
#ifndef DIRENTRY_H
|
||||
#define DIRENTRY_H
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
#include <config.h>
|
||||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
@ -240,6 +242,9 @@ int vfs_s_select_on_two (int fd1, int fd2);
|
||||
int vfs_s_get_line (vfs *me, int sock, char *buf, int buf_len, char term);
|
||||
int vfs_s_get_line_interruptible (vfs *me, char *buffer, int size, int fd);
|
||||
|
||||
/* misc */
|
||||
int vfs_s_retrieve_file (vfs *me, struct vfs_s_inode *ino);
|
||||
|
||||
/* If non-null, FREE */
|
||||
#define ifree(ptr) do { if (ptr) g_free(ptr); } while (0)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user