blob: 2a95fad55c5f8b88dabcb5449b7434f3bd69d42c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- a/examples/rlfe/pty.c
+++ b/examples/rlfe/pty.c
@@ -254,7 +254,7 @@ char **ttyn;
#if defined(HAVE_GETPT) && defined(linux)
int getpt __P((void));
#endif
- sigret_t (*sigcld)__P(SIGPROTOARG);
+ sighandler_t sigcld;
strcpy(PtyName, "/dev/ptmx");
#if defined(HAVE_GETPT) && defined(linux)
|