GNOME Bugzilla – Bug 418845
new functions should be static
Last modified: 2007-03-16 09:16:41 UTC
I notice that libart_lgpl_2.so.2.3.19 exports 3 new functions, which I think really should be defined as static, and not exported: art_alloc art_free art_realloc Could these function be made static, or are they really intended for outside use?
They are intended for outside use. art_free is how you free something that was allocated by libart. Its used by external code already.