blob: 36ca1d48cee066ba4755e0e22938c3b1f753a324 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//===========================================================================//
#ifndef CONPRINT_H
#define CONPRINT_H
#ifdef _WIN32
#pragma once
#endif
void Con_SafePrintf (PRINTF_FORMAT_STRING const char *fmt, ...);
#endif // CONPRINT_H
|