Date: Tue, 10 Feb 2009 21:09:54 +0000 (UTC) From: Maksim Yevmenkin <emax@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org Subject: svn commit: r188454 - in stable/7/lib/libc: . string uuid Message-ID: <200902102109.n1AL9s3j004415@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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; +};
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200902102109.n1AL9s3j004415>