Re: [ovs-dev] [PATCH 5/5] lib/util: Make some functions in util.c inline

2013-12-13 Thread Ben Pfaff
On Fri, Dec 13, 2013 at 02:17:17PM +0100, Helmut Schaa wrote: > str_to_uint, str_to_ulong and str_to_ullong are just wrappers > around the corresponding signed functions. Move these to util.h > and make them inline saving some library exports and letting > the compiler do some more magic. > > Sign

[ovs-dev] [PATCH 5/5] lib/util: Make some functions in util.c inline

2013-12-13 Thread Helmut Schaa
str_to_uint, str_to_ulong and str_to_ullong are just wrappers around the corresponding signed functions. Move these to util.h and make them inline saving some library exports and letting the compiler do some more magic. Signed-off-by: Helmut Schaa --- lib/util.c | 18 -- lib/util