61 lines
1.5 KiB
C
61 lines
1.5 KiB
C
/*
|
|
* Copyright (c) 2012 Basho Technologies, Inc. All Rights Reserved.
|
|
* Author: Gregory Burd <greg@basho.com> <greg@burd.me>
|
|
*
|
|
* This file is provided to you under the Apache License,
|
|
* Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain
|
|
* a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
#ifndef __COMMON_H__
|
|
#define __COMMON_H__
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef DEBUG
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#ifndef DPRINTF
|
|
#define DPRINTF(fmt, ...) \
|
|
do { \
|
|
fprintf(stderr, "%s:%d " fmt "\n", __func__, __LINE__, __VA_ARGS__); \
|
|
fflush(stderr); \
|
|
} while(0)
|
|
#endif
|
|
#ifndef DPUTS
|
|
#define DPUTS(arg) DPRINTF("%s", arg)
|
|
#endif
|
|
#else
|
|
#define DPRINTF(fmt, ...) ((void) 0)
|
|
#define DPUTS(arg) ((void) 0)
|
|
#endif
|
|
|
|
#ifndef COMPQUIET
|
|
#define COMPQUIET(n, v) do { \
|
|
(n) = (v); \
|
|
(n) = (n); \
|
|
} while (0)
|
|
#endif
|
|
|
|
#ifndef __UNUSED
|
|
#define __UNUSED(v) ((void)(v))
|
|
#endif
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif // __COMMON_H__
|