mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-21 14:49:53 +02:00
17 lines
288 B
C++
17 lines
288 B
C++
//
|
|
// shared_Log.cpp
|
|
// hifi
|
|
//
|
|
// Created by Tobias Schwinger on 4/17/13.
|
|
// Copyright (c) 2013 High Fidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#include "shared_Log.h"
|
|
|
|
#include <cstdio>
|
|
|
|
namespace shared_lib {
|
|
using namespace std;
|
|
|
|
int (* printLog)(char const*, ...) = & printf;
|
|
}
|