Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Oct 2017 04:51:05 +0000 (UTC)
From:      Cy Schubert <cy@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r325031 - head/lib/libc/stdio
Message-ID:  <201710270451.v9R4p5DJ054505@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Fri Oct 27 04:51:05 2017
New Revision: 325031
URL: https://svnweb.freebsd.org/changeset/base/325031

Log:
  Ensure all incude statements are kept together by moving the
  sys/cdefs.h include appropriately.
  
  MFC after:	1 week
  X-MFC with:	r325030

Modified:
  head/lib/libc/stdio/gets.c

Modified: head/lib/libc/stdio/gets.c
==============================================================================
--- head/lib/libc/stdio/gets.c	Fri Oct 27 04:47:44 2017	(r325030)
+++ head/lib/libc/stdio/gets.c	Fri Oct 27 04:51:05 2017	(r325031)
@@ -33,9 +33,9 @@
 #if defined(LIBC_SCCS) && !defined(lint)
 static char sccsid[] = "@(#)gets.c	8.1 (Berkeley) 6/4/93";
 #endif /* LIBC_SCCS and not lint */
-#include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
+#include <sys/cdefs.h>
 #include "namespace.h"
 #include <unistd.h>
 #include <stdio.h>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710270451.v9R4p5DJ054505>