--- trunk/src/include/misc.h 2007/10/08 16:18:11 6 +++ trunk/src/include/misc.h 2007/10/08 16:18:27 10 @@ -28,7 +28,7 @@ * SUCH DAMAGE. * * - * $Id: misc.h,v 1.231 2005/05/23 18:21:37 debug Exp $ + * $Id: misc.h,v 1.233 2005/06/20 05:52:49 debug Exp $ * * Misc. definitions for gxemul. */ @@ -121,7 +121,15 @@ void debug_indentation(int diff); void debug(char *fmt, ...); void fatal(char *fmt, ...); + + +/* misc.c: */ unsigned long long mystrtoull(const char *s, char **endp, int base); +int mymkstemp(char *template); +#ifdef USE_STRLCPY_REPLACEMENTS +size_t mystrlcpy(char *dst, const char *src, size_t size); +size_t mystrlcat(char *dst, const char *src, size_t size); +#endif /* of.c: */ @@ -147,4 +155,8 @@ void useremul_init(void); +/* yamon.c: */ +int yamon_emul(struct cpu *cpu); + + #endif /* MISC_H */