blob: 544895bc407eaef8538f6c2e6e4bf95e37157409 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
*
* SPDX-License-Identifier: MIT
*/
#include <Library/SimpleLibrary.h>
UINTN Plus2(UINTN number) {
return number+2;
}
|