]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid some unnecessary stdio.h includes
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 9 Jul 2019 00:50:39 +0000 (17:50 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 9 Jul 2019 00:50:39 +0000 (17:50 -0700)
* src/atimer.c, src/callproc.c, src/coding.c, src/dired.c, src/eval.c:
* src/fringe.c, src/ftcrfont.c, src/ftfont.c, src/ftxfont.c:
* src/gfilenotify.c, src/indent.c, src/kqueue.c, src/menu.c:
* src/scroll.c, src/terminal.c, src/unexcoff.c, src/window.c:
* src/xfont.c, src/xftfont.c:
Do not include stdio.h since it is unused.

19 files changed:
src/atimer.c
src/callproc.c
src/coding.c
src/dired.c
src/eval.c
src/fringe.c
src/ftcrfont.c
src/ftfont.c
src/ftxfont.c
src/gfilenotify.c
src/indent.c
src/kqueue.c
src/menu.c
src/scroll.c
src/terminal.c
src/unexcoff.c
src/window.c
src/xfont.c
src/xftfont.c

index 8387b8aa0e017bc7cfc66bd2bb390c09e7a2af4f..b28f3e25961fce7f4d56f76b401496389a14d113 100644 (file)
@@ -17,7 +17,6 @@ You should have received a copy of the GNU General Public License
 along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
-#include <stdio.h>
 
 #include "lisp.h"
 #include "keyboard.h"
index 98c67312b49486ffe04231617773b6a161d702f9..2596f9019e4ac680dba0aa4e7077d323299dc385 100644 (file)
@@ -21,7 +21,6 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 #include <errno.h>
-#include <stdio.h>
 #include <stdlib.h>
 #include <sys/types.h>
 #include <unistd.h>
index e90d57144f67368e37e11f5bdb37ad327c2467dd..189a4b39d152a7e62c32bac5c38608a0c19b7e60 100644 (file)
@@ -284,7 +284,6 @@ encode_coding_XXX (struct coding_system *coding)
 /*** 1. Preamble ***/
 
 #include <config.h>
-#include <stdio.h>
 
 #ifdef HAVE_WCHAR_H
 #include <wchar.h>
index b700013f6a82300756c9c1e75b1f85be505b4a50..7bc4b83fd775f2af21199e80e9a463ad4f5e1793 100644 (file)
@@ -20,7 +20,6 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 
-#include <stdio.h>
 #include <sys/stat.h>
 
 #ifdef HAVE_PWD_H
index 0006123b0afc58dcf3cadca216ded7c8e35ced1a..8f569949036b10681ecb2f35ac92f775ccf93348 100644 (file)
@@ -21,7 +21,6 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 #include <limits.h>
-#include <stdio.h>
 #include <stdlib.h>
 #include "lisp.h"
 #include "blockinput.h"
index 335a6eb04686a20501a8d08c9d1b2d3ffcd9dc5d..d0d599223d53a9c36dd10926ffa88457ccc27247 100644 (file)
@@ -18,7 +18,6 @@ You should have received a copy of the GNU General Public License
 along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
-#include <stdio.h>
 
 #include <byteswap.h>
 
index ff61ecfe313838111ad80088e538899a5954abe6..937862121606f014941fd32bb72559e6fa48d16a 100644 (file)
@@ -18,7 +18,6 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 
 #include <config.h>
-#include <stdio.h>
 #include <math.h>
 #include <cairo-ft.h>
 
index 74afa2cf5a2ff9d649ad98bbd639ba58bd954a9c..a80e2fb5c4b2ce876ec06a672703c9dd0d1099c2 100644 (file)
@@ -20,7 +20,6 @@ You should have received a copy of the GNU General Public License
 along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
-#include <stdio.h>
 #include <fontconfig/fontconfig.h>
 #include <fontconfig/fcfreetype.h>
 
index b1467360ad6309a2867f14a8f731c867073c839c..ae7d1a5a9b52df8dc7dd31d2fc1bc4e48a592ec8 100644 (file)
@@ -20,7 +20,6 @@ You should have received a copy of the GNU General Public License
 along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
-#include <stdio.h>
 #include <X11/Xlib.h>
 
 #include "lisp.h"
index ddb19770c3c7c9da375529df31cf8cefa3f09bb3..af7740a87ca1b6df8c938c9d5c7b7a80d986fe7f 100644 (file)
@@ -18,7 +18,6 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 
-#include <stdio.h>
 #include <gio/gio.h>
 #include "lisp.h"
 #include "coding.h"
index f0d709e38b33584f96b1ceb21bc9b9cd2bd4b7f7..1b589a710cff1c00666ddc34905686b652c8d977 100644 (file)
@@ -18,7 +18,6 @@ You should have received a copy of the GNU General Public License
 along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
-#include <stdio.h>
 
 #include "lisp.h"
 #include "character.h"
index 42391f84677871a2f520a128147ac712006af0b4..76d7fc1ecbdb7610bbc169b3d774f298788781e3 100644 (file)
@@ -19,7 +19,6 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 
-#include <stdio.h>
 #include <sys/types.h>
 #include <sys/event.h>
 #include <sys/time.h>
index e82c857059540bc048c3f1c944de22366ebfe97f..f67bdf056675088f5612c4346aa0f206b079bafb 100644 (file)
@@ -19,7 +19,6 @@ You should have received a copy of the GNU General Public License
 along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
-#include <stdio.h>
 #include <limits.h> /* for INT_MAX */
 
 #include "lisp.h"
index 8eda510945f3c71ff09edc33867d15cd47bdb5e7..e6c058351ab25f80d27967e23e02f8bf83dd14db 100644 (file)
@@ -20,7 +20,6 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 
 #include <config.h>
-#include <stdio.h>
 
 #include "lisp.h"
 #include "termchar.h"
index 0ee0121e35ed45b1a9f168c42adec77800178f18..bb02d586615000cee2f0cdda4d53498a02d2096a 100644 (file)
@@ -18,8 +18,6 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 
-#include <stdio.h>
-
 #include "lisp.h"
 #include "character.h"
 #include "frame.h"
index 220ce709df90b7b036d7e200ffbfd8d88fb6643e..03ff99460d080c3e398188f4acd1478ba89b39ee 100644 (file)
@@ -96,7 +96,6 @@ struct aouthdr
 #ifndef makedev                        /* Try to detect types.h already loaded */
 #include <sys/types.h>
 #endif /* makedev */
-#include <stdio.h>
 #include <errno.h>
 
 #include <sys/file.h>
index deeb4f63fe0319d9bd3949424bea2cf68e2bf59b..1b205367275791cd33fb13c759f0b9c501e60f01 100644 (file)
@@ -20,8 +20,6 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 
-#include <stdio.h>
-
 #include "lisp.h"
 #include "buffer.h"
 #include "keyboard.h"
index 81808e7a62e4c8cb1e1b59ffc04f97e61b884ba8..9a8417b12d4f3336446fab6ab210faec9141febc 100644 (file)
@@ -20,7 +20,6 @@ You should have received a copy of the GNU General Public License
 along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
-#include <stdio.h>
 #include <stdlib.h>
 #include <X11/Xlib.h>
 
index 2cad6db933b9c508ab4cbb8511414b5a34fd17d7..74add58007d3af39fa77a6f8afcfe1f1517cfd95 100644 (file)
@@ -20,7 +20,6 @@ You should have received a copy of the GNU General Public License
 along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
-#include <stdio.h>
 #include <X11/Xlib.h>
 #include <X11/Xft/Xft.h>