aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysdep.c
diff options
context:
space:
mode:
authorJan D2010-07-02 14:19:53 +0200
committerJan D2010-07-02 14:19:53 +0200
commitf57e2426f0e8a6b251be71b6f62237fd286998ea (patch)
treea8db36e415ea69b4196881b44122454317510f46 /src/sysdep.c
parent383e09700c9b3d175c506301d363be4597827db7 (diff)
downloademacs-f57e2426f0e8a6b251be71b6f62237fd286998ea.tar.gz
emacs-f57e2426f0e8a6b251be71b6f62237fd286998ea.zip
Remove __P and P_ from .c and .m files and definition of P_
* lisp.h: * atimer.h: Remove define for P_. * alloc.c: Remove __P and P_ from .c and .m files. * atimer.c: * buffer.c: * callint.c: * category.c: * charset.c: * chartab.c: * cm.c: * coding.c: * composite.c: * data.c: * dired.c: * dispnew.c: * doc.c: * editfns.c: * emacs.c: * eval.c: * fileio.c: * filelock.c: * fns.c: * font.c: * fontset.c: * frame.c: * ftfont.c: * ftxfont.c: * gmalloc.c: * gtkutil.c: * image.c: * indent.c: * intervals.c: * keyboard.c: * keymap.c: * lread.c: * marker.c: * menu.c: * minibuf.c: * print.c: * process.c: * scroll.c: * search.c: * sound.c: * strftime.c: * syntax.c: * sysdep.c: * term.c: * terminal.c: * textprop.c: * unexalpha.c: * w32console.c: * w32fns.c: * w32font.c: * w32menu.c: * w32term.c: * w32uniscribe.c: * window.c: * xdisp.c: * xfaces.c: * xfns.c: * xfont.c: * xftfont.c: * xmenu.c: * xselect.c: * xterm.c: Likewise. * ebrowse.c: Remove P_ and __P. * etags.c: * movemail.c: * pop.c: * update-game-score.c: Likewise.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index e311d181c9c..a026cd014a2 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -169,7 +169,7 @@ static const int baud_convert[] =
169 169
170int emacs_ospeed; 170int emacs_ospeed;
171 171
172void croak P_ ((char *)) NO_RETURN; 172void croak (char *) NO_RETURN;
173 173
174/* Temporary used by `sigblock' when defined in terms of signprocmask. */ 174/* Temporary used by `sigblock' when defined in terms of signprocmask. */
175 175
@@ -561,11 +561,11 @@ child_setup_tty (out)
561struct save_signal 561struct save_signal
562{ 562{
563 int code; 563 int code;
564 SIGTYPE (*handler) P_ ((int)); 564 SIGTYPE (*handler) (int);
565}; 565};
566 566
567static void save_signal_handlers P_ ((struct save_signal *)); 567static void save_signal_handlers (struct save_signal *);
568static void restore_signal_handlers P_ ((struct save_signal *)); 568static void restore_signal_handlers (struct save_signal *);
569 569
570/* Suspend the Emacs process; give terminal to its superior. */ 570/* Suspend the Emacs process; give terminal to its superior. */
571 571
@@ -725,7 +725,7 @@ save_signal_handlers (saved_handlers)
725 while (saved_handlers->code) 725 while (saved_handlers->code)
726 { 726 {
727 saved_handlers->handler 727 saved_handlers->handler
728 = (SIGTYPE (*) P_ ((int))) signal (saved_handlers->code, SIG_IGN); 728 = (SIGTYPE (*) (int)) signal (saved_handlers->code, SIG_IGN);
729 saved_handlers++; 729 saved_handlers++;
730 } 730 }
731} 731}