svn commit: r188454 - in stable/7/lib/libc: . string uuid

Maksim Yevmenkin emax at FreeBSD.org
Tue Feb 10 13:09:55 PST 2009


Author: emax
Date: Tue Feb 10 21:09:54 2009
New Revision: 188454
URL: http://svn.freebsd.org/changeset/base/188454

Log:
  MFC r183058
  
  Add uuid_enc,dec_le,be() functions to Symbol.map
  Pointy hat goes to me.
  
  MFC r183192
  
  Move uuid_enc_le, uuid_dec_le, uuid_enc_be and uuid_dec_be symbols
  into FBSD_1.1 section where they should be (as Pointed out by: kib,
  deischen)

Modified:
  stable/7/lib/libc/   (props changed)
  stable/7/lib/libc/string/ffsll.c   (props changed)
  stable/7/lib/libc/string/flsll.c   (props changed)
  stable/7/lib/libc/uuid/Symbol.map

Modified: stable/7/lib/libc/uuid/Symbol.map
==============================================================================
--- stable/7/lib/libc/uuid/Symbol.map	Tue Feb 10 20:29:57 2009	(r188453)
+++ stable/7/lib/libc/uuid/Symbol.map	Tue Feb 10 21:09:54 2009	(r188454)
@@ -12,3 +12,10 @@ FBSD_1.0 {
 	uuid_create;
 	uuid_compare;
 };
+
+FBSD_1.1 {
+	uuid_enc_le;
+	uuid_dec_le;
+	uuid_enc_be;
+	uuid_dec_be;
+};


More information about the svn-src-stable mailing list