blob: 280d61139784c2ed085fe99d4b9222a00dc131e6 [file] [log] [blame]
Jon Medhurst96b56152014-10-30 18:01:15 +00001/**
2 * Copyright (C) ARM Limited 2014. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#ifndef SETUP_H
10#define SETUP_H
11
12// From include/generated/uapi/linux/version.h
13#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
14
15bool getLinuxVersion(int version[3]);
16int update(const char *const gatorPath);
17
18#endif // SETUP_H