aboutsummaryrefslogtreecommitdiffstats
path: root/src/xgselect.c
diff options
context:
space:
mode:
authorJuanma Barranquero2010-07-04 15:41:55 +0200
committerJuanma Barranquero2010-07-04 15:41:55 +0200
commite5447b22e975b57094fb6089bf98a238d29fd710 (patch)
treea6c303a2d8d73b960df36982447ec3b6d7f92632 /src/xgselect.c
parent438105ed4d403c48cc452cd70891f04bbcdad347 (diff)
downloademacs-e5447b22e975b57094fb6089bf98a238d29fd710.tar.gz
emacs-e5447b22e975b57094fb6089bf98a238d29fd710.zip
Fix more prototypes.
* atimer.c (start_atimer): Use EMACS_TIME, not struct timeval. * sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval. * xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
Diffstat (limited to 'src/xgselect.c')
-rw-r--r--src/xgselect.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xgselect.c b/src/xgselect.c
index 5c7e008044d..56e14fe6e14 100644
--- a/src/xgselect.c
+++ b/src/xgselect.c
@@ -29,7 +29,8 @@ static GPollFD *gfds;
29static int gfds_size; 29static int gfds_size;
30 30
31int 31int
32xg_select (int max_fds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) 32xg_select (int max_fds, SELECT_TYPE *rfds, SELECT_TYPE *wfds, SELECT_TYPE *efds,
33 EMACS_TIME *timeout)
33{ 34{
34 SELECT_TYPE all_rfds, all_wfds; 35 SELECT_TYPE all_rfds, all_wfds;
35 EMACS_TIME tmo, *tmop = timeout; 36 EMACS_TIME tmo, *tmop = timeout;