mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-14 10:05:43 +01:00
7c0aa811ec
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
20 lines
347 B
C
20 lines
347 B
C
//
|
|
// partutil.h
|
|
// partutil
|
|
//
|
|
// Created by Yves Blusseau on 28/12/2014.
|
|
// Copyright (c) 2014-2015 JrCs. All rights reserved.
|
|
//
|
|
|
|
#ifndef partutil_partutil_h
|
|
#define partutil_partutil_h
|
|
|
|
// macros
|
|
#define STRINGIFY(s) #s
|
|
#define STRINGIFY2(s) STRINGIFY(s)
|
|
#define PROGNAME_S STRINGIFY2(PROGNAME)
|
|
|
|
#define VERSION_S STRINGIFY(0.15)
|
|
|
|
#endif
|