summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-04-21 12:24:50 -0700
committerElliott Hughes <enh@google.com>2015-04-21 12:24:50 -0700
commitd5ff3e9449a6b2ce388e09f86cd60f2231c033cd (patch)
tree46ca9c21531828024edb38b106c38c7abce23412 /include
parent6a2d5a34e81b75ac61337d401aab16bf917b47b1 (diff)
downloadsystem_core-d5ff3e9449a6b2ce388e09f86cd60f2231c033cd.zip
system_core-d5ff3e9449a6b2ce388e09f86cd60f2231c033cd.tar.gz
system_core-d5ff3e9449a6b2ce388e09f86cd60f2231c033cd.tar.bz2
Remove dead code.
We weren't even building this. Change-Id: I8b2afbc76d784a7b24bbe0be6502b9fbcf0b5c09
Diffstat (limited to 'include')
-rw-r--r--include/cutils/dir_hash.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/include/cutils/dir_hash.h b/include/cutils/dir_hash.h
deleted file mode 100644
index fbb4d02..0000000
--- a/include/cutils/dir_hash.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright (C) 2007 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-typedef enum {
- SHA_1,
-} HashAlgorithm;
-
-int get_file_hash(HashAlgorithm algorithm, const char *path,
- char *output_string, size_t max_output_string);
-
-int get_recursive_hash_manifest(HashAlgorithm algorithm,
- const char *directory_path,
- char **output_string);