tell tidy the input is ISO-8859-1 & to not complain so much
[privoxy.git] / amiga.c
diff --git a/amiga.c b/amiga.c
index 08696da..7a6fa2b 100644 (file)
--- a/amiga.c
+++ b/amiga.c
@@ -1,11 +1,10 @@
-const char amiga_rcs[] = "$Id: amiga.c,v 1.13 2009/05/16 13:27:20 fabiankeil Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/amiga.c,v $
  *
  * Purpose     :  Amiga-specific declarations.
  *
- * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
+ * Copyright   :  Written by and Copyright (C) 2001 members of the
  *                Privoxy team. http://www.privoxy.org/
  *
  *                This program is free software; you can redistribute it
@@ -38,8 +37,6 @@ const char amiga_rcs[] = "$Id: amiga.c,v 1.13 2009/05/16 13:27:20 fabiankeil Exp
 
 #include "project.h"
 
-const char amiga_h_rcs[] = AMIGA_H_VERSION;
-
 static char *ver USED = "$VER: Privoxy " __AMIGAVERSION__ " (" __AMIGADATE__ ")";
 #ifdef __amigaos4__
 static char *stack USED = "$STACK: 524288";
@@ -74,7 +71,7 @@ SAVEDS ULONG server_thread(void)
    {
       SetErrnoPtr(&(UserData.eno),sizeof(int));
       local_csp->cfd=ObtainSocket(local_csp->cfd, AF_INET, SOCK_STREAM, 0);
-      if(JB_INVALID_SOCKET!=local_csp->cfd)
+      if (JB_INVALID_SOCKET!=local_csp->cfd)
       {
          Signal(main_task,SIGF_SINGLE);
          serve((struct client_state *) local_csp);
@@ -207,7 +204,7 @@ void free (void *m)
 {
    ULONG *mem = m;
 
-   if(mem && memPool)
+   if (mem && memPool)
    {
       ULONG size=*--mem;
 
@@ -268,7 +265,7 @@ void __memCleanUp (void)
    }
 }
 
-#define ADD2LIST(a,b,c) asm(".stabs \"_" #b "\"," #c ",0,0,_" #a )
+#define ADD2LIST(a,b,c) asm(".stabs \"_" #b "\"," #c ",0,0,_" #a)
 #define ADD2EXIT(a,pri) ADD2LIST(a,__EXIT_LIST__,22); \
                         asm(".stabs \"___EXIT_LIST__\",20,0,0," #pri "+128")
 ADD2EXIT(__memCleanUp,-50);