mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-02 11:27:16 -04:00
d6e76cca7b
Fix the following warning: input.c: In function ‘getstring’: input.c:590: warning: ignoring return value of ‘mkstemp’, declared with attribute warn_unused_result This add usage.c module for die function. This also add wrapper.c module for the xmkstemp that is wrapper function around the original mkstemp function. Both module codes was largelly based on git, linux and sparse codes. Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
7 lines
98 B
C
7 lines
98 B
C
#ifndef USAGE_H_
|
|
#define USAGE_H_
|
|
|
|
extern void die(const char* err, ...);
|
|
|
|
#endif /* USAGE_H_ */
|