Move typedef into extern "C" {.
authorRalf Corsépius <corsepiu@fedoraproject.org>
Mon, 29 Oct 2007 09:20:41 +0000 (10:20 +0100)
committerRalf Corsépius <corsepiu@fedoraproject.org>
Mon, 29 Oct 2007 09:20:41 +0000 (10:20 +0100)
rpmdb/rpmhash.h

index b06d49b..f5cce1d 100644 (file)
@@ -6,16 +6,16 @@
  * Hash table implemenation.
  */
 
-/**
- */
-typedef struct hashTable_s * hashTable;
-
 #ifdef __cplusplus
 extern "C" {
 #endif
 
 /**
  */
+typedef struct hashTable_s * hashTable;
+
+/**
+ */
 typedef unsigned int (*hashFunctionType) (const void * string);
 
 /**