mirror of https://github.com/GOSTSec/ccminer
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
322 B
15 lines
322 B
/* |
|
* Copyright (c) 2009, 2010 Petri Lehtinen <petri@digip.org> |
|
* |
|
* Jansson is free software; you can redistribute it and/or modify |
|
* it under the terms of the MIT license. See LICENSE for details. |
|
*/ |
|
|
|
#ifndef UTIL_H |
|
#define UTIL_H |
|
|
|
#ifndef max |
|
#define max(a, b) ((a) > (b) ? (a) : (b)) |
|
#endif |
|
|
|
#endif
|
|
|