removed vim_free() function

This commit is contained in:
Matthias Beyer
2014-04-29 16:17:55 +02:00
committed by Justin M. Keyes
parent f9d4c78ddc
commit d910ef2099
2 changed files with 0 additions and 11 deletions

View File

@@ -634,16 +634,6 @@ int copy_option_part(char_u **option, char_u *buf, int maxlen, char *sep_chars)
return len; return len;
} }
///
/// Replacement for free().
///
/// @deprecated Use free() instead
///
void vim_free(void *x)
{
free(x);
}
/* /*
* Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC. * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
*/ */

View File

@@ -27,7 +27,6 @@ int leftcol_changed(void);
int csh_like_shell(void); int csh_like_shell(void);
int copy_option_part(char_u **option, char_u *buf, int maxlen, int copy_option_part(char_u **option, char_u *buf, int maxlen,
char *sep_chars); char *sep_chars);
void vim_free(void *x);
int get_fileformat(buf_T *buf); int get_fileformat(buf_T *buf);
int get_fileformat_force(buf_T *buf, exarg_T *eap); int get_fileformat_force(buf_T *buf, exarg_T *eap);
void set_fileformat(int t, int opt_flags); void set_fileformat(int t, int opt_flags);