mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 22:55:06 +02:00
15 lines
241 B
C++
15 lines
241 B
C++
//
|
|
// Log.cpp
|
|
// hifi
|
|
//
|
|
// Created by Tobias Schwinger on 4/17/13.
|
|
// Copyright (c) 2013 High Fidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#include "Log.h"
|
|
|
|
#include <cstdio>
|
|
|
|
using namespace std;
|
|
int (* printLog)(char const*, ...) = & printf;
|
|
|