diff options
author | root <root> | 2005-03-03 17:20:31 +0000 |
---|---|---|
committer | root <root> | 2005-03-03 17:20:31 +0000 |
commit | d2d9117d3ae1bdb5298635a6ac17a4427591025c (patch) | |
tree | 9e3ef2cdba1cef602312d7b61784641f2fcda8cf | |
parent | 5c848f9d81006c1f5b93a7c7ef9290c0e00a7d87 (diff) |
*** empty log message ***
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | conftest.c | 2 | ||||
-rw-r--r-- | coro.c | 2 | ||||
-rw-r--r-- | coro.h | 7 |
5 files changed, 8 insertions, 7 deletions
@@ -1,4 +1,4 @@ -Copyright (c) 2000,2001 Marc Alexander Lehmann <pcg@goof.com> +Copyright (c) 2000-2005 Marc Alexander Lehmann <schmorp@schmorp.de> Redistribution and use in source and binary forms, with or without modifica- tion, are permitted provided that the following conditions are met: @@ -3,4 +3,4 @@ note that the file conftest.c in this distribution is under the GPL. It is not needed for proper operation of this library though, for that, coro.h and coro.c suffice. -Marc Lehmann <pcg@goof.com> +Marc Lehmann <schmorp@schmorp.de> @@ -21,7 +21,7 @@ * You should have received a copy of the GNU Lesser General Public * License along with this file; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - * USA, or contact Marc Lehmann <pcg@goof.com>. + * USA, or contact Marc Lehmann <schmorp@schmorp.de>. */ #include <stdio.h> @@ -1,5 +1,5 @@ /* - * Copyright (c) 2001 Marc Alexander Lehmann <pcg@goof.com> + * Copyright (c) 2001-2005 Marc Alexander Lehmann <schmorp@schmorp.de> * * Redistribution and use in source and binary forms, with or without modifica- * tion, are permitted provided that the following conditions are met: @@ -1,5 +1,5 @@ /* - * Copyright (c) 2001 Marc Alexander Lehmann <pcg@goof.com> + * Copyright (c) 2001-2005 Marc Alexander Lehmann <schmorp@schmorp.de> * * Redistribution and use in source and binary forms, with or without modifica- * tion, are permitted provided that the following conditions are met: @@ -33,15 +33,16 @@ * build your own process abstraction using it or - better - just use GNU * Portable Threads, http://www.gnu.org/software/pth/. * - * VERSION: 0.1 */ #ifndef CORO_H #define CORO_H +#define CORO_VERSION 1 + /* * This library consists of only three files - * coro.h, coro.c and LICENSE + * coro.h, coro.c and LICENSE (and optionally README) * * It implements what is known as coroutines, in a hopefully * portable way. At the moment you have to define which kind |