8c2952457
김태훈
응용 프로그램 추가
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* socketcan/can/version.h
*
* Version information for the CAN network layer implementation
* Author: Urs Thuermann <urs.thuermann@volkswagen.de>
* Copyright (c) 2002-2007 Volkswagen Group Electronic Research
* All rights reserved.
*
* Send feedback to <socketcan-users@lists.berlios.de>
*
*/
#ifndef CAN_VERSION_H
#define CAN_VERSION_H
#define RCSID(s) asm(".section .rodata.str1.1,\"aMS\",@progbits,1
\t" \
".string \"" s "\"
\t.previous
")
RCSID("$Id: version.h 1038 2009-08-21 10:00:21Z hartkopp $");
#endif /* CAN_VERSION_H */
|