r1525: *** empty log message ***
[uffi.git] / examples / gethostname.cl
index 4916ed33a939714ea61b4804a3efa07e0f0842a2..fbb3539a6230914c3bd717bc992ece1e95c4f292 100644 (file)
@@ -9,7 +9,7 @@
 ;;;;
 ;;;; Copyright (c) 2002 Kevin M. Rosenberg
 ;;;;
-;;;; $Id: gethostname.cl,v 1.1 2002/03/09 19:55:33 kevin Exp $
+;;;; $Id: gethostname.cl,v 1.3 2002/03/10 04:15:33 kevin Exp $
 ;;;;
 ;;;; This file is part of UFFI. 
 ;;;;
@@ -32,7 +32,7 @@
 
 ;;; This example is inspired by the example on the CL-Cookbook web site
 
-(uffi:def-routine ("gethostname" c-gethostname) 
+(uffi:def-function ("gethostname" c-gethostname) 
     ((name :c-string)
      (len :int))
   :returning :int)
@@ -47,5 +47,6 @@
          (error "gethostname() failed."))
       (uffi:free-foreign-object name))))
     
+#+test-uffi
 (format t "~&Hostname: ~A" (gethostname))