Revision ffc3f70286f5e883c4be87260572dcfafc3231d5 authored by stamatak on 11 November 2013, 11:37:02 UTC, committed by stamatak on 11 November 2013, 11:37:02 UTC
1 parent c96c9ba
Raw File
compiler.h
/*
 *   Copyright (C) 2009, 2010, 2011 Lockless Inc., Steven Von Fuerst.
 *
 * This library is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/* Pick compiler specific details */
#ifdef __linux__
#include "gcc.h"
#else
#ifdef _MSC_VER
#include "vs.h"
#else
#include "ming.h"
#endif
#endif
back to top