summaryrefslogtreecommitdiffstats
path: root/OvmfPkg/XenBusDxe/Helpers.c
blob: b22f9c5b0d22b3a792a71c9e0dc9ecc001f804c2 (plain)
1
2
3
4
5
6
7
8
9
#include "XenBusDxe.h"

CHAR8*
AsciiStrDup (
  IN CONST CHAR8* Str
  )
{
  return AllocateCopyPool (AsciiStrSize (Str), Str);
}