--- a/kerneltest/e32test/mmu/t_wsd_tst.h Tue Aug 31 16:34:26 2010 +0300
+++ b/kerneltest/e32test/mmu/t_wsd_tst.h Wed Sep 01 12:34:56 2010 +0100
@@ -47,7 +47,7 @@
// Exports of DLL1
#ifdef T_WSD_DL1
#else
-IMPORT_D extern TInt32 ExportedData;
+IMPORT_D TInt32 ExportedData;
IMPORT_C TInt CheckExportedDataAddress(void *aDataAddr);
#endif // T_WSD_DL1
@@ -65,10 +65,10 @@
#ifdef T_WSD_DL3
#else
IMPORT_C void** GetAddressOfData(TInt& aSize, void*& aCodeAddr, void*& aDataAddr);
-IMPORT_D extern TInt32 TestDataSize;
-IMPORT_D extern void* WritableTestData[1 /* refer TestDataSize */];
-IMPORT_D extern const void* const* PointerToStaticData;
-IMPORT_D extern void** PointerToWritableData;
+IMPORT_D TInt32 TestDataSize;
+IMPORT_D void* WritableTestData[1 /* refer TestDataSize */];
+IMPORT_D const void* const* PointerToStaticData;
+IMPORT_D void** PointerToWritableData;
#endif // T_WSD_DL3
#endif // __T_WSD_TST_H__