stdio_filbuf (d_stdstdio.U):
This variable defines how, given a FILE pointer, fp, to tell
- stdio to refill it's internal buffers (?). This will
+ stdio to refill its internal buffers (?). This will
be used to define the macro FILE_filbuf(fp).
stdio_ptr (d_stdstdio.U):
* This macro is to be used to generate uniformly distributed
* random numbers over the range [0., 1.[. You may have to supply
* an 'extern double drand48();' in your program since SunOS 4.1.3
- * doesn't provide you with anything relevant in it's headers.
+ * doesn't provide you with anything relevant in its headers.
* See HAS_DRAND48_PROTO.
*/
/* Rand_seed_t:
Configure and perl need a way to invoke a C
preprocessor. I have created a simple cover
for cc which does the right thing. Without this,
-Configure will create it's own wrapper which works,
+Configure will create its own wrapper which works,
but it doesn't handle some of the command line arguments
that perl will throw at it.
ftp://ftp.math.ohio-state.edu/pub/users/ilya/cperl-mode/patches
\(this upgrades syntax-parsing abilities of RMS Emaxen v19.34 and
v20.2 up to the level of RMS Emacs v20.3 - a must for a good Perl
-mode.) You will not get much from XEmacs, it's syntax abilities are
+mode.) You will not get much from XEmacs; its syntax abilities are
too primitive.
Get support packages choose-color.el (or font-lock-extra.el before
=item getncnt ( SEM )
Returns the number of processed waiting for the semaphore C<SEM> to
-become greater than it's current value
+become greater than its current value
=item getpid ( SEM )
count on that object reaches zero, REF will be set to undef.
This is useful for keeping copies of references , but you don't want to
-prevent the object being DESTROY-ed at it's usual time.
+prevent the object being DESTROY-ed at its usual time.
=back
# Andreas Koenig <k@franz.ww.TU-Berlin.DE> and Gerd Knops <gerti@BITart.com>.
# Comments, questions, and improvements welcome!
#
-# These hints work for NeXT 3.2 and 3.3. 3.0 has it's own
+# These hints work for NeXT 3.2 and 3.3. 3.0 has its own
# special hint file.
#
# cpp Configure and perl need a way to invoke a C
# preprocessor. I have created a simple cover
# for cc which does the right thing. Without this,
-# Configure will create it's own wrapper which works,
+# Configure will create its own wrapper which works,
# but it doesn't handle some of the command line arguments
# that perl will throw at it.
# make You really need GNU make to compile this. GNU make
=head1 DESCRIPTION
This package has the same functionality as CPAN.pm, but tries to
-prevent the usage of compiled extensions during it's own
-execution. It's primary purpose is a rescue in case you upgraded perl
+prevent the usage of compiled extensions during its own
+execution. Its primary purpose is a rescue in case you upgraded perl
and broke binary compatibility somehow.
=head1 SEE ALSO
This function returns a string of calls to B<newXS()> that glue the module B<bootstrap>
function to B<boot_ModuleName> for each @modules.
-B<xsinit()> uses the xsi_* functions to generate most of it's code.
+B<xsinit()> uses the xsi_* functions to generate most of its code.
=back
$(RM_RF) $@
END
- # If this extension has it's own library (eg SDBM_File)
+ # If this extension has its own library (eg SDBM_File)
# then copy that to $(INST_STATIC) and add $(OBJECT) into it.
push(@m, "\t$self->{CP} \$(MYEXTLIB) \$\@\n") if $self->{MYEXTLIB};
$(INST_STATIC): $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)/.exists
$(RM_RF) $@
END
- # If this extension has it's own library (eg SDBM_File)
+ # If this extension has its own library (eg SDBM_File)
# then copy that to $(INST_STATIC) and add $(OBJECT) into it.
push(@m, "\t$self->{CP} \$(MYEXTLIB) \$\@\n") if $self->{MYEXTLIB};
$(INST_STATIC) : $(OBJECT) $(MYEXTLIB)
';
- # If this extension has it's own library (eg SDBM_File)
+ # If this extension has its own library (eg SDBM_File)
# then copy that to $(INST_STATIC) and add $(OBJECT) into it.
push(@m, "\t",'$(CP) $(MYEXTLIB) $(MMS$TARGET)',"\n") if $self->{MYEXTLIB};
$(INST_STATIC): $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)\.exists
$(RM_RF) $@
END
- # If this extension has it's own library (eg SDBM_File)
+ # If this extension has its own library (eg SDBM_File)
# then copy that to $(INST_STATIC) and add $(OBJECT) into it.
push(@m, "\t$self->{CP} \$(MYEXTLIB) \$\@\n") if $self->{MYEXTLIB};
=head1 DESCRIPTION
-C<Net::DummyInetd> is just what it's name says, it is a dummy inetd server.
+C<Net::DummyInetd> is just what its name says, it is a dummy inetd server.
Creation of a C<Net::DummyInetd> will cause a child process to be spawned off
which will listen to a socket. When a connection arrives on this socket
the specified command is fork'd and exec'd with STDIN and STDOUT file
long endpos = dirp->end - dirp->start;
long newsize = endpos + strlen(ptr) + 1;
/* bump the string table size by enough for the
- * new name and it's null terminator */
+ * new name and its null terminator */
while (newsize > dirp->size) {
long curpos = dirp->curr - dirp->start;
dirp->size *= 2;