add static to local-only stuff

This commit is contained in:
Stefan `Sec` Zehl 2011-08-03 18:37:41 +02:00
parent 18dc658956
commit b23caed454
1 changed files with 3 additions and 3 deletions

View File

@ -2,10 +2,10 @@
#include <render.h> #include <render.h>
// Local function: Get next nibble. // Local function: Get next nibble.
int ctr=0; // offset for next nibble static int ctr=0; // offset for next nibble
int hilo=0; // 0= high nibble next, 1=low nibble next static int hilo=0; // 0= high nibble next, 1=low nibble next
const uint8_t * data; const uint8_t * data;
char gnn(){ // Get next nibble static char gnn(){ // Get next nibble
static int byte; static int byte;
int val; int val;
if(hilo==1) if(hilo==1)