Adding #include <avr/signal.h> to twi.c because the older version of avr-libc for Ubuntu Linux 6.06 (Dapper) doesn't define SIGNAL() in <avr/interrupt.h>.

This commit is contained in:
David A. Mellis 2006-12-26 00:01:31 +00:00
parent 8417a01218
commit 122bee43c6
1 changed files with 1 additions and 0 deletions

View File

@ -22,6 +22,7 @@
#include <inttypes.h>
#include <avr/io.h>
#include <avr/interrupt.h>
#include <avr/signal.h>
#include <compat/twi.h>
#ifndef cbi