1 #include "csf.h"
2 #include "csfimpl.h"
3 
4 /* global header (opt.) and dumconv's prototypes "" */
5 
6 /* headers of this app. modules called */
7 
8 /***************/
9 /* EXTERNALS   */
10 /***************/
11 
12 /**********************/
13 /* LOCAL DECLARATIONS */
14 /**********************/
MdelAttribute(MAP * m,CSF_ATTR_ID id)15 
16 /*********************/
17 /* LOCAL DEFINITIONS */
18 /*********************/
19 
20 /******************/
21 /* IMPLEMENTATION */
22 /******************/
23 
24 /* ARGSUSED */
25 
26 /* dummy conversion (LIBRARY_INTERNAL)
27  * does nothing
28  */
29 void CsfDummyConversion(
30   size_t  nrCells,
31   void   *buf)
32 {
33   /* nothing */
34   /* Shut up the C compiler */
35   (void)nrCells;
36   (void)buf;
37 }
38