blob: 3d334e768d61c18024e44446d3db91c0312c7c5d [file] [log] [blame]
extern "C" void *memset (void *, int, __SIZE_TYPE__);
void *p;
template <int T>
struct B
{
void foo () { memset (p, 0, 4 * T * sizeof(float)); }
};