diff options
Diffstat (limited to 'tests/null.c')
-rw-r--r-- | tests/null.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/null.c b/tests/null.c new file mode 100644 index 0000000..550e636 --- /dev/null +++ b/tests/null.c @@ -0,0 +1,26 @@ +/* Name: null.c + * Project: Testing driver features + * Author: Christian Starkjohann + * Creation Date: 2008-04-29 + * Tabsize: 4 + * Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH + * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt) + * This Revision: $Id$ + */ + +/* +This is a NULL main() function to find out the code size required by libusb's +startup code, interrupt vectors etc. +*/ +#include <avr/io.h> + + +/* ------------------------------------------------------------------------- */ + +int main(void) +{ + for(;;); + return 0; +} + +/* ------------------------------------------------------------------------- */ |