diff options
| author | Carl Shapiro <cshapiro@google.com> | 2011-04-20 16:51:38 -0700 |
|---|---|---|
| committer | Carl Shapiro <cshapiro@google.com> | 2011-04-20 16:51:38 -0700 |
| commit | 1e1433e78f560a01744e870c19c162ab88df9dc1 (patch) | |
| tree | 71b961cb1e81cb2a23ab47d121c6bf3f725879d2 /vm/Native.cpp | |
| parent | 58ddbada8c4d4a74a7d3ea0c7379c7e1fec6c255 (diff) | |
Remove unneeded void argument list declarations.
Change-Id: Ica749f6defa890363ec531b29e25bc415dc2cbb9
Diffstat (limited to 'vm/Native.cpp')
| -rw-r--r-- | vm/Native.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/Native.cpp b/vm/Native.cpp index 58963f5c5..7ff22b84d 100644 --- a/vm/Native.cpp +++ b/vm/Native.cpp @@ -33,7 +33,7 @@ static void* lookupSharedLibMethod(const Method* method); /* * Initialize the native code loader. */ -bool dvmNativeStartup(void) +bool dvmNativeStartup() { gDvm.nativeLibs = dvmHashTableCreate(4, freeSharedLibEntry); if (gDvm.nativeLibs == NULL) @@ -45,7 +45,7 @@ bool dvmNativeStartup(void) /* * Free up our tables. */ -void dvmNativeShutdown(void) +void dvmNativeShutdown() { dvmHashTableFree(gDvm.nativeLibs); gDvm.nativeLibs = NULL; |
