Remove cgpt app-specific symbols from libvboot_host.a

Three symbols used by the standalone cgpt executable were being referenced
in the files used to create the external libvboot_host.a needed by non-vboot
userspace applications.

This cleans things up so those symbols don't have to be explictly defined
by other repos just to link with that library.

BUG=chromium:318536
BRANCH=ToT
TEST=manual

No new functionality, just code cleanup. Tested with

  make runtests runfutiltests runlongtests

Change-Id: Ibc77fb9800c89d7109ebf38d4d6729f52665722f
Signed-off-by: Bill Richardson <wfrichar@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/205667
Reviewed-by: Randall Spangler <rspangler@chromium.org>
diff --git a/cgpt/cmd_create.c b/cgpt/cmd_create.c
index 4f04220..c751b24 100644
--- a/cgpt/cmd_create.c
+++ b/cgpt/cmd_create.c
@@ -8,6 +8,8 @@
 #include "cgpt.h"
 #include "vboot_host.h"
 
+extern const char* progname;
+
 static void Usage(void)
 {
   printf("\nUsage: %s create [OPTIONS] DRIVE\n\n"