diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2001-06-16 02:12:36 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-06-16 02:12:36 +0000 |
| commit | cb38c474621b3bc6bf7ee86fe53d821dfdbab234 (patch) | |
| tree | 38ba35eb9647f5bfc6aebac3dfb5fc58d29c0949 /sys/boot/efi/libefi/module.c | |
| parent | 9baaab27a0e9e8993a254f4623a8ca732a85c77f (diff) | |
Notes
Diffstat (limited to 'sys/boot/efi/libefi/module.c')
| -rw-r--r-- | sys/boot/efi/libefi/module.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/sys/boot/efi/libefi/module.c b/sys/boot/efi/libefi/module.c index bb2edbe8f1f4..6c07e2863a53 100644 --- a/sys/boot/efi/libefi/module.c +++ b/sys/boot/efi/libefi/module.c @@ -22,14 +22,12 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ -/* - * alpha-specific module functionality. - * - */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif /* not lint */ #include <stand.h> @@ -39,6 +37,6 @@ int efi_autoload(void) { - /* XXX use PnP to locate stuff here */ - return(0); + /* XXX use PnP to locate stuff here */ + return (0); } |
