aboutsummaryrefslogtreecommitdiffstats
path: root/Lessons/Lesson_35/UefiLessonsPkg/Library/SimpleLibrary/SimpleLibrary.c
blob: acffba4a4a351bd2667b6bc2ab077de02f49d9c3 (plain)
1
2
3
4
5
#include <Library/SimpleLibrary.h>

UINTN Plus2(UINTN number) {
  return number+2;
}