svn commit: r251863 - head/usr.bin/sort
Eitan Adler
eadler at FreeBSD.org
Mon Jun 17 20:15:40 UTC 2013
Author: eadler
Date: Mon Jun 17 20:15:39 2013
New Revision: 251863
URL: http://svnweb.freebsd.org/changeset/base/251863
Log:
Fix header guards.
This was ready about the same time as r251862 so just make one final cleanup
Submitted by: dt71 at gmx.com
Modified:
head/usr.bin/sort/vsort.h
Modified: head/usr.bin/sort/vsort.h
==============================================================================
--- head/usr.bin/sort/vsort.h Mon Jun 17 20:11:04 2013 (r251862)
+++ head/usr.bin/sort/vsort.h Mon Jun 17 20:15:39 2013 (r251863)
@@ -27,8 +27,8 @@
* SUCH DAMAGE.
*/
-#if !defined(__VSORT_H__)
-#define __VSORT_H__
+#ifndef _VSORT_H_
+#define _VSORT_H_
#include "bwstring.h"
More information about the svn-src-all
mailing list