Make two functions static

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2013-03-20 18:27:49 -04:00
parent 4750fade13
commit 131c01dbe9
2 changed files with 3 additions and 2 deletions

View file

@ -26,7 +26,8 @@
#include "syscall-list.h"
const struct syscall_name *lookup_syscall(register const char *str, register unsigned int len);
static const struct syscall_name* lookup_syscall(register const char *str,
register unsigned int len);
#include "syscall-to-name.h"
#include "syscall-from-name.h"

View file

@ -36,7 +36,7 @@
#include <linux/limits.h>
#include <linux/input.h>
const struct key* lookup_key (const char *str, unsigned int len);
static const struct key* lookup_key (const char *str, unsigned int len);
#include "keys-from-name.h"
#include "keys-to-name.h"