* Makefile.in, configure.in, configure,
[fw/sdcc] / src / pic16 / glue.h
index 30e54dde9d3cf8df4bcc187282b68511a1b53257..3c8e04786ca737b2fb2b1ba0e0268e0861d82d35 100644 (file)
    You are forbidden to forbid anyone else to use, share and improve
    what you give them.   Help stamp out software-hoarding!  
 -------------------------------------------------------------------------*/
-#include "SDCCglobl.h"
-#include "SDCCmem.h"
 
-#ifndef SDCCGLUE_H
-#define SDCCGLUE_H 1
+#ifndef PIC16_GLUE_H
+#define PIC16_GLUE_H
 
-void glue ();
-/* drdani Jan 30 2000
-   This is needed in gen.c of z80 port */
-char *aopLiteral (value *, int);
+#include "SDCCset.h"
+
+extern set *pic16_localFunctions;
+
+void pic16glue (void);
+unsigned int pic16aopLiteral (value *val, int offset);
+int pic16_stringInSet(const char *str, set **world, int autoAdd);
 
 #endif