char_u *buf,
int maxlen,
long time, // milliseconds
- int tb_change_cnt)
+ int tb_change_cnt UNUSED)
{
int len;
long utime;
void
fname_case(
char_u *name,
- int len) // buffer size, ignored here
+ int len UNUSED) // buffer size, ignored here
{
struct FileInfoBlock *fib;
size_t flen;
* Set hidden flag for "name".
*/
void
-mch_hide(char_u *name)
+mch_hide(char_u *name UNUSED)
{
// can't hide a file
}
* Return -1 if unknown.
*/
int
-mch_can_exe(char_u *name, char_u **path, int use_path)
+mch_can_exe(char_u *name, char_u **path UNUSED, int use_path)
{
int exe = -1;
#ifdef __amigaos4__
* NODE_OTHER: non-writable things
*/
int
-mch_nodetype(char_u *name)
+mch_nodetype(char_u *name UNUSED)
{
// TODO
return NODE_NORMAL;
* trouble with lattice-c programs.
*/
void
-mch_breakcheck(int force)
+mch_breakcheck(int force UNUSED)
{
if (SetSignal(0L, (long)(SIGBREAKF_CTRL_C|SIGBREAKF_CTRL_D|SIGBREAKF_CTRL_E|SIGBREAKF_CTRL_F)) & SIGBREAKF_CTRL_C)
got_int = TRUE;
*/
// ARGSUSED
int
-mch_setenv(char *var, char *value, int x)
+mch_setenv(char *var, char *value, int x UNUSED)
{
#ifdef FEAT_ARP
if (!dos2)