X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=examples%2Fgetshells.lisp;h=ceb210ce8ba94638480bc809970307a1ee98c369;hb=b86fdf882156aa45dc6e8e93a158dedf506f4233;hp=c28270695a146650cfdc2b9284f223949fd84ddc;hpb=ebedde4e67b858b1f65c5eb4dc7bc45978ed1e40;p=uffi.git diff --git a/examples/getshells.lisp b/examples/getshells.lisp index c282706..ceb210c 100644 --- a/examples/getshells.lisp +++ b/examples/getshells.lisp @@ -7,13 +7,8 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id$ +;;;; This file, part of UFFI, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; -;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg -;;;; -;;;; UFFI users are granted the rights to distribute and use this software -;;;; as governed by the terms of the Lisp Lesser GNU Public License -;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* (in-package :cl-user) @@ -37,7 +32,7 @@ (let (shells) (do ((shell (uffi:convert-from-cstring (getusershell)) (uffi:convert-from-cstring (getusershell)))) - ((null shell)) + ((null shell)) (push shell shells)) (endusershell) (nreverse shells)))