]> pd.if.org Git - liblfds/blob - liblfds/liblfds6.1.0/liblfds610/src/lfds610_abstraction/lfds610_abstraction_free.c
Initial import (all versions, including the new 7.1.0)
[liblfds] / liblfds / liblfds6.1.0 / liblfds610 / src / lfds610_abstraction / lfds610_abstraction_free.c
1 #include "lfds610_abstraction_internal_wrapper.h"
2
3
4
5
6
7 /****************************************************************************/
8 #if (!defined WIN_KERNEL_BUILD)
9
10   /* TRD : any OS except Windows kernel on any CPU with any compiler
11
12            !WIN_KERNEL_BUILD  indicates not Windows kernel
13   */
14
15   void lfds610_abstraction_free( void *memory )
16   {
17     free( memory );
18
19     return;
20   }
21
22 #endif
23
24
25
26
27
28 /****************************************************************************/
29 #if (defined WIN_KERNEL_BUILD)
30
31   /* TRD : any Windows (kernel) on any CPU with the Microsoft C compiler
32
33            WIN_KERNEL_BUILD  indicates Windows kernel
34   */
35
36   void lfds610_abstraction_free( void *memory )
37   {
38     ExFreePoolWithTag( memory, 'sdfl' );
39
40     return;
41   }
42
43 #endif
44