summaryrefslogtreecommitdiff
path: root/host/linktest/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'host/linktest/main.c')
-rw-r--r--host/linktest/main.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/host/linktest/main.c b/host/linktest/main.c
deleted file mode 100644
index aca2c745..00000000
--- a/host/linktest/main.c
+++ /dev/null
@@ -1,31 +0,0 @@
-/* Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-/*
- * This tests for the presence of functions used by vboot_reference utilities.
- */
-
-#include <stdio.h>
-
-#include "host_common.h"
-#include "file_keys.h"
-#include "signature_digest.h"
-
-int main(void)
-{
- /* host_misc.h */
- ReadFile(0, 0);
- WriteFile(0, 0, 0);
-
- /* file_keys.h */
- DigestFile(0, 0, 0, 0);
-
- /* signature_digest.h */
- PrependDigestInfo(0, 0);
- SignatureDigest(0, 0, 0);
- SignatureBuf(0, 0, 0, 0);
-
- return 0;
-}