CVSROOT: /cvs Module name: src Changes by: kette...@cvs.openbsd.org 2016/09/26 02:08:52
Modified files: sys/sys : tree.h Log message: Mark the static inline functions defined by RBT_PROTOTYPE as __unused. The way these functions are generated through a macro makes clang think they're defined in the .c file. Since some of these function may be unused, clang issues a warning. Marking them as __unused suppresses the macro. ok visa@, deraadt@, dlg@