Remove CV_DECLARE(), which serves no useful purpose.

This commit is contained in:
jasone 2001-01-25 07:29:54 +00:00
parent 7283cbc99b
commit bf5d4c5ca4

View File

@ -50,10 +50,6 @@ struct cv {
};
#ifdef _KERNEL
#define CV_DECLARE(modifiers, name, descr) \
static const char __cv_descr_##name[] = descr; \
modifiers struct cv name = {{NULL, NULL}, NULL, __cv_descr_##name}
void cv_init(struct cv *cvp, const char *desc);
void cv_destroy(struct cv *cvp);