Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
tpruvot
GitHub Repository: tpruvot/cpuminer-multi
Path: blob/linux/compat/jansson/util.h
1201 views
1
/*
2
* Copyright (c) 2009, 2010 Petri Lehtinen <[email protected]>
3
*
4
* Jansson is free software; you can redistribute it and/or modify
5
* it under the terms of the MIT license. See LICENSE for details.
6
*/
7
8
#ifndef UTIL_H
9
#define UTIL_H
10
11
#ifndef max
12
#define max(a, b) ((a) > (b) ? (a) : (b))
13
#endif
14
15
#endif
16
17