comparison src/fileio.c @ 109668:d9a022ec322c

Remove extern declarations in .c files, .h files have them. * src/xterm.c: * src/xdisp.c: * src/process.c: * src/msdos.c: * src/image.c: * src/gtkutil.c: * src/fileio.c: * src/eval.c: Remove declarations.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 06 Aug 2010 12:07:16 -0700
parents 228a5fa4eda0
children 64732fa6188a
comparison
equal deleted inserted replaced
109667:fd6fad994956 109668:d9a022ec322c
852 (let (default-directory) 852 (let (default-directory)
853 (expand-file-name "a")) 853 (expand-file-name "a"))
854 854
855 To avoid this, we set default_directory to the root of the 855 To avoid this, we set default_directory to the root of the
856 current drive. */ 856 current drive. */
857 extern char *emacs_root_dir (void);
858
859 default_directory = build_string (emacs_root_dir ()); 857 default_directory = build_string (emacs_root_dir ());
860 #else 858 #else
861 default_directory = build_string ("/"); 859 default_directory = build_string ("/");
862 #endif 860 #endif
863 } 861 }