diff options
Diffstat (limited to 'src/widget.c')
-rw-r--r-- | src/widget.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/widget.c b/src/widget.c index e662dd3ecdf..c3d396ddab0 100644 --- a/src/widget.c +++ b/src/widget.c @@ -31,10 +31,10 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ #include <config.h> #include "widget.h" -#include <stdio.h> #include <stdlib.h> #include "lisp.h" +#include "sysstdio.h" #include "xterm.h" #include "frame.h" @@ -364,8 +364,7 @@ EmacsFrameInitialize (Widget request, Widget new, ArgList dum1, Cardinal *dum2) if (!ew->emacs_frame.frame) { - fprintf (stderr, - "can't create an emacs frame widget without a frame\n"); + fputs ("can't create an emacs frame widget without a frame\n", stderr); exit (1); } |