comparison src/proto/os_amiga.pro @ 7668:21b0a39d13ed v7.4.1133

commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 19 13:22:12 2016 +0100 patch 7.4.1133 Problem: Generated function prototypes still have __ARGS(). Solution: Generate function prototypes without __ARGS().
author Christian Brabandt <cb@256bit.org>
date Tue, 19 Jan 2016 13:30:06 +0100
parents 6529590f6c43
children 175b1116f96a
comparison
equal deleted inserted replaced
7667:201b9c7e3df7 7668:21b0a39d13ed
1 /* os_amiga.c */ 1 /* os_amiga.c */
2 void win_resize_on __ARGS((void)); 2 void win_resize_on(void);
3 void win_resize_off __ARGS((void)); 3 void win_resize_off(void);
4 void mch_write __ARGS((char_u *p, int len)); 4 void mch_write(char_u *p, int len);
5 int mch_inchar __ARGS((char_u *buf, int maxlen, long time, int tb_change_cnt)); 5 int mch_inchar(char_u *buf, int maxlen, long time, int tb_change_cnt);
6 int mch_char_avail __ARGS((void)); 6 int mch_char_avail(void);
7 long_u mch_avail_mem __ARGS((int special)); 7 long_u mch_avail_mem(int special);
8 void mch_delay __ARGS((long msec, int ignoreinput)); 8 void mch_delay(long msec, int ignoreinput);
9 void mch_suspend __ARGS((void)); 9 void mch_suspend(void);
10 void mch_init __ARGS((void)); 10 void mch_init(void);
11 int mch_check_win __ARGS((int argc, char **argv)); 11 int mch_check_win(int argc, char **argv);
12 int mch_input_isatty __ARGS((void)); 12 int mch_input_isatty(void);
13 void fname_case __ARGS((char_u *name, int len)); 13 void fname_case(char_u *name, int len);
14 void mch_settitle __ARGS((char_u *title, char_u *icon)); 14 void mch_settitle(char_u *title, char_u *icon);
15 void mch_restore_title __ARGS((int which)); 15 void mch_restore_title(int which);
16 int mch_can_restore_title __ARGS((void)); 16 int mch_can_restore_title(void);
17 int mch_can_restore_icon __ARGS((void)); 17 int mch_can_restore_icon(void);
18 int mch_get_user_name __ARGS((char_u *s, int len)); 18 int mch_get_user_name(char_u *s, int len);
19 void mch_get_host_name __ARGS((char_u *s, int len)); 19 void mch_get_host_name(char_u *s, int len);
20 long mch_get_pid __ARGS((void)); 20 long mch_get_pid(void);
21 int mch_dirname __ARGS((char_u *buf, int len)); 21 int mch_dirname(char_u *buf, int len);
22 int mch_FullName __ARGS((char_u *fname, char_u *buf, int len, int force)); 22 int mch_FullName(char_u *fname, char_u *buf, int len, int force);
23 int mch_isFullName __ARGS((char_u *fname)); 23 int mch_isFullName(char_u *fname);
24 long mch_getperm __ARGS((char_u *name)); 24 long mch_getperm(char_u *name);
25 int mch_setperm __ARGS((char_u *name, long perm)); 25 int mch_setperm(char_u *name, long perm);
26 void mch_hide __ARGS((char_u *name)); 26 void mch_hide(char_u *name);
27 int mch_isdir __ARGS((char_u *name)); 27 int mch_isdir(char_u *name);
28 int mch_mkdir __ARGS((char_u *name)); 28 int mch_mkdir(char_u *name);
29 int mch_can_exe __ARGS((char_u *name, char_u **path, int use_path)); 29 int mch_can_exe(char_u *name, char_u **path, int use_path);
30 int mch_nodetype __ARGS((char_u *name)); 30 int mch_nodetype(char_u *name);
31 void mch_early_init __ARGS((void)); 31 void mch_early_init(void);
32 void mch_exit __ARGS((int r)); 32 void mch_exit(int r);
33 void mch_settmode __ARGS((int tmode)); 33 void mch_settmode(int tmode);
34 int mch_screenmode __ARGS((char_u *arg)); 34 int mch_screenmode(char_u *arg);
35 int mch_get_shellsize __ARGS((void)); 35 int mch_get_shellsize(void);
36 void mch_set_shellsize __ARGS((void)); 36 void mch_set_shellsize(void);
37 void mch_new_shellsize __ARGS((void)); 37 void mch_new_shellsize(void);
38 int mch_call_shell __ARGS((char_u *cmd, int options)); 38 int mch_call_shell(char_u *cmd, int options);
39 void mch_breakcheck __ARGS((void)); 39 void mch_breakcheck(void);
40 long Chk_Abort __ARGS((void)); 40 long Chk_Abort(void);
41 int mch_expandpath __ARGS((garray_T *gap, char_u *pat, int flags)); 41 int mch_expandpath(garray_T *gap, char_u *pat, int flags);
42 int mch_has_exp_wildcard __ARGS((char_u *p)); 42 int mch_has_exp_wildcard(char_u *p);
43 int mch_has_wildcard __ARGS((char_u *p)); 43 int mch_has_wildcard(char_u *p);
44 char_u *mch_getenv __ARGS((char_u *var)); 44 char_u *mch_getenv(char_u *var);
45 int mch_setenv __ARGS((char *var, char *value, int x)); 45 int mch_setenv(char *var, char *value, int x);
46 /* vim: set ft=c : */ 46 /* vim: set ft=c : */