Revision be41fd706d3ece62d95e9b84638788e672c85443 authored by stamatak on 07 November 2013, 19:10:39 UTC, committed by stamatak on 07 November 2013, 19:10:39 UTC
1 parent f30b37d
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