]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Main/Main.c
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Main / Main.c
diff --git a/AppPkg/Applications/Main/Main.c b/AppPkg/Applications/Main/Main.c
deleted file mode 100644 (file)
index 2347954..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/** @file\r
-    A simple, basic, application showing how the Hello application could be\r
-    built using the "Standard C Libraries" from StdLib.\r
-\r
-    Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>\r
-    SPDX-License-Identifier: BSD-2-Clause-Patent\r
-**/\r
-//#include  <Uefi.h>\r
-//#include  <Library/UefiLib.h>\r
-//#include  <Library/ShellCEntryLib.h>\r
-\r
-#include  <stdio.h>\r
-\r
-/***\r
-  Demonstrates basic workings of the main() function by displaying a\r
-  welcoming message.\r
-\r
-  Note that the UEFI command line is composed of 16-bit UCS2 wide characters.\r
-  The easiest way to access the command line parameters is to cast Argv as:\r
-      wchar_t **wArgv = (wchar_t **)Argv;\r
-\r
-  @param[in]  Argc    Number of argument tokens pointed to by Argv.\r
-  @param[in]  Argv    Array of Argc pointers to command line tokens.\r
-\r
-  @retval  0         The application exited normally.\r
-  @retval  Other     An error occurred.\r
-***/\r
-int\r
-main (\r
-  IN int Argc,\r
-  IN char **Argv\r
-  )\r
-{\r
-\r
-  puts("Hello there fellow Programmer.");\r
-  puts("Welcome to the world of EDK II.");\r
-\r
-  return 0;\r
-}\r