Searched refs:vendrel (Results 1 – 1 of 1) sorted by relevance
552 int vendrel = VENDOR_RELEASE; in InitOutput() local557 major = vendrel / 100000000; in InitOutput()558 vendrel -= major * 100000000; in InitOutput()559 minor = vendrel / 1000000; in InitOutput()560 vendrel -= minor * 1000000; in InitOutput()561 year = vendrel / 10000; in InitOutput()562 vendrel -= year * 10000; in InitOutput()563 month = vendrel / 100; in InitOutput()564 vendrel -= month * 100; in InitOutput()565 day = vendrel; in InitOutput()