]> git.eshelyaron.com Git - emacs.git/commitdiff
Pacify --enable-gcc-warnings with emacs_fdopen
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 7 Aug 2023 16:17:56 +0000 (09:17 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 7 Aug 2023 16:19:42 +0000 (09:19 -0700)
* src/lisp.h (emacs_fdopen): Now ATTRIBUTE_MALLOC
ATTRIBUTE_DEALLOC (emacs_fclose, 1), to pacify gcc
-Wsuggest-attribute=malloc on non-Android platforms.

src/lisp.h

index 447912581d742d39d06987a02804406d1ca61b00..85de57b0b2f9b1e41a7bb323facc7e8176dd5ef0 100644 (file)
@@ -5086,8 +5086,9 @@ extern int emacs_open (const char *, int, int);
 extern int emacs_open_noquit (const char *, int, int);
 extern int emacs_pipe (int[2]);
 extern int emacs_close (int);
-extern FILE *emacs_fdopen (int, const char *);
 extern int emacs_fclose (FILE *);
+extern FILE *emacs_fdopen (int, const char *)
+  ATTRIBUTE_MALLOC ATTRIBUTE_DEALLOC (emacs_fclose, 1);
 extern int emacs_unlink (const char *);
 extern int emacs_symlink (const char *, const char *);
 extern int emacs_rmdir (const char *);